-
Notifications
You must be signed in to change notification settings - Fork 11
/
taxMaps-index
executable file
·189 lines (142 loc) · 5.05 KB
/
taxMaps-index
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#!/usr/bin/env python
################################################################################
### COPYRIGHT ##################################################################
# New York Genome Center
# SOFTWARE COPYRIGHT NOTICE AGREEMENT
# This software and its documentation are copyright (2014) by the New York
# Genome Center. All rights are reserved. This software is supplied without
# any warranty or guaranteed support whatsoever. The New York Genome Center
# cannot be responsible for its use, misuse, or functionality.
# Version: 0.2
# Author: Andre Corvelo
################################################################# /COPYRIGHT ###
################################################################################
################################################################################
### MODULES ####################################################################
from optparse import OptionParser
import sys, uuid, os
################################################################### /MODULES ###
################################################################################
################################################################################
### FUNCTIONS ##################################################################
################################################################# /FUNCTIONS ###
################################################################################
################################################################################
### ARGUMENTS,OPTIONS ##########################################################
parser = OptionParser(usage="\n%prog [options]", version="%prog v0.2")
parser.add_option(
"-i",
metavar = "FILE",
type = "string",
dest = "fasta_file",
default = None,
help = "Input fasta file (Mandatory)"
)
parser.add_option(
"-c",
metavar = "FILE",
type = "string",
dest="corr_file",
default = None,
help = "Correspondence file gi -> tax file (Mandatory)"
)
parser.add_option(
"-t",
metavar = "FILE",
type = "string",
dest = "tax_file",
default = None,
help = "Taxonomy table file (Mandatory)"
)
parser.add_option(
"-p",
metavar = "STR",
type = "string",
dest = "prefix",
default = None,
help = "Prefix for output files (defaults to the input fasta basename)"
)
parser.add_option(
"-T",
metavar = "INT",
type = "string",
dest = "threads",
default = "1",
help = "Number of threads (default = 1)"
)
parser.add_option(
"-Q",
metavar = "DIR",
type = "string",
dest = "queue",
default = None,
help = "Cluster queue/partition (default = None)"
)
parser.add_option(
"-S",
metavar = "DIR",
type = "string",
dest = "slots",
default = "1",
help = "Cluster slots (default = 1)"
)
parser.add_option(
"--dry",
metavar = "FLAG",
dest = "dry",
action = 'store_true',
default = False,
help = "Dry run (default = False)"
)
(opt, args) = parser.parse_args()
if not opt.fasta_file or not opt.corr_file or not opt.tax_file:
parser.print_help()
sys.exit(-1)
######################################################### /ARGUMENTS,OPTIONS ###
################################################################################
################################################################################
### CONSTANTS ##################################################################
################################################################# /CONSTANTS ###
################################################################################
################################################################################
### MAIN #######################################################################
if __name__ == '__main__':
module_dir = os.path.abspath(os.path.dirname(__file__))
fasta_f = opt.fasta_file
gitax_f = opt.corr_file
tax_f = opt.tax_file
if opt.prefix:
prefix = opt.prefix
else:
prefix = '.'.join(os.path.basename(fasta_f).split('.')[:-1])
in_f = prefix + '.gitax.fa'
out_f = prefix + '.discarded.fa'
len_f = prefix + '.len'
sh_f = prefix + '.sh'
threads = opt.threads
sge_queue = opt.queue
sge_slots = opt.slots
if sge_queue:
sge_f = prefix + '.sge'
dry_run = opt.dry
gitax_str = ' '.join(['txM_gitax', '-i', fasta_f, '-c', gitax_f,'-t', tax_f, '2>', out_f, '>', in_f])
len_str = ' '.join(['txM_fastalen', '-i', in_f, '>', len_f])
index_str = ' '.join(['gem-indexer', '-i', in_f, '-o', prefix, '-T', threads])
sh_file = open(sh_f, 'w')
sh_file.write('#!/bin/sh\n\n')
sh_file.write('export PATH=$PATH:' + module_dir + '/bin\n\n')
sh_file.write(gitax_str + '\n')
sh_file.write(len_str + '\n')
sh_file.write(index_str + '\n\n')
sh_file.close()
if sge_queue:
sge_file = open(sge_f, 'w')
sge_file.write('\t'.join(['txMi_' + prefix, sge_queue, '0', '-', sge_slots, '.', 'sh ' + sh_f]) + '\n')
sge_file.close()
if not dry_run:
os.system(' '.join([module_dir + '/bin/txM_sge', '-s', sge_f]))
else:
if not dry_run:
os.system(' '.join(['sh', sh_f]))
###################################################################### /MAIN ###
################################################################################