-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move more project configs to config.py and download HMM to .phyling/H…
…MM instead of user specified path.
- Loading branch information
1 parent
759b2fe
commit 4c0afa4
Showing
4 changed files
with
25 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
"""Some project specific configuration parameters.""" | ||
prot_aln_ext = 'aa.mfa' # protein alignment extension | ||
cds_aln_ext = 'cds.mfa' # cds alignment extension | ||
protein_ext = 'faa' # protein fasta files | ||
cds_ext = 'cds' # coding sequence alignment file extension | ||
aln_ext = 'mfa' # general alignment extension | ||
from pathlib import Path | ||
|
||
default_HMM = 'HMM' # default directory for HMM downloads | ||
database = "https://busco-data.ezlab.org/v5/data" | ||
cfg_dir = Path.home() / ".phyling" | ||
default_HMM = "HMM" # default directory for HMM downloads | ||
|
||
prot_aln_ext = "aa.mfa" # protein alignment extension | ||
cds_aln_ext = "cds.mfa" # cds alignment extension | ||
protein_ext = "faa" # protein fasta files | ||
cds_ext = "cds" # coding sequence alignment file extension | ||
aln_ext = "mfa" # general alignment extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters