forked from kshulgina/codetta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodetta_align.py
executable file
·49 lines (38 loc) · 2 KB
/
codetta_align.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
from codetta import *
def argument_parsing():
# initialize parser
parser = argparse.ArgumentParser(description="aligns profile HMM database to six-frame translation of input nucleotide sequence")
parser.add_argument('prefix', help='specify the file prefix for the input nucleotide sequence in FASTA format (ie [PREFIX].fna). This can include \
a path. Temporary files will be written to [PREFIX]_temp_files/ and output files will be written to [PREFIX].[extensions]')
# remaining arguments all are set optionally, otherwise default values
parser.add_argument('--resource_directory', help='directory where resource files can be found (default: [script dir]/resources)', type=str)
parser.add_argument('--hmmer_directory', help='directory where HMMER and Easel executables can be found (default: [script dir]/hmmer-3.1b2/bin)', type=str)
return parser.parse_args()
def main():
args = argument_parsing()
if args.resource_directory == None:
args.resource_directory = os.path.join(os.path.dirname(__file__), 'resources')
args.resource_directory = os.path.normpath(args.resource_directory)
if args.hmmer_directory == None:
args.hmmer_directory = os.path.join(os.path.dirname(__file__), 'hmmer-3.1b2/bin')
args.hmmer_directory = os.path.normpath(args.hmmer_directory)
# initialize genetic code with command line args and download genome
args.results_summary = None
args.identifier = None
args.download_type = None
args.evalue = None
args.probability_threshold = None
args.max_fraction = None
args.mito_pfams = None
args.transposon_pfams = None
args.viral_pfams = None
args.selenocysteine_pfams = None
args.pyrrolysine_pfams = None
initialize_globals(args.resource_directory)
gc = GeneticCode(args)
gc.processing_genome()
gc.create_preliminary_translation()
gc.hmmscan_jobs()
if __name__ == "__main__":
sys.exit(main())