You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/comparem
+3
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,7 @@ if __name__ == '__main__':
134
134
similarity_parser.add_argument('-a', '--per_aln_len', type=float, default=70.0, help="minimum percent coverage of query sequence for reporting an alignment")
135
135
similarity_parser.add_argument('-x', '--file_ext', default='faa', help="extension of files to process")
136
136
similarity_parser.add_argument('--blastp', action="store_true", default=False, help="use Blastp-fast instead of DIAMOND")
137
+
similarity_parser.add_argument('--sensitive', action="store_true", default=False, help="use sensitive mode of DIAMOND")
137
138
similarity_parser.add_argument('--keep_headers', action="store_true", default=False, help="indicates FASTA headers already have the format <genome_id>~<gene_id>")
138
139
similarity_parser.add_argument('--tmp_dir', action=ChangeTempAction, default=tempfile.gettempdir(), help="specify alternative directory for temporary files")
139
140
similarity_parser.add_argument('-c', '--cpus', help='number of CPUs to use', type=int, default=1)
@@ -184,6 +185,7 @@ if __name__ == '__main__':
184
185
aai_wf_parser.add_argument('--proteins', action="store_true", default=False, help="indicates the input files contain protein sequences")
185
186
aai_wf_parser.add_argument('--force_table', type=int, default=None, help="force use of specific translation table")
186
187
aai_wf_parser.add_argument('--blastp', action="store_true", default=False, help="use blastp instead of diamond")
188
+
aai_wf_parser.add_argument('--sensitive', action="store_true", default=False, help="use sensitive mode of DIAMOND")
187
189
aai_wf_parser.add_argument('--keep_headers', action="store_true", default=False, help="indicates FASTA headers already have the format <genome_id>~<gene_id>")
188
190
aai_wf_parser.add_argument('--keep_rbhs', help="create file with reciprocal best hits", action='store_true')
189
191
aai_wf_parser.add_argument('--tmp_dir', action=ChangeTempAction, default=tempfile.gettempdir(), help="specify alternative directory for temporary files")
@@ -206,6 +208,7 @@ if __name__ == '__main__':
206
208
classify_wf_parser.add_argument('--proteins', action="store_true", default=False, help="indicates the input files contain protein sequences")
207
209
classify_wf_parser.add_argument('--force_table', type=int, default=None, help="force use of specific translation table")
208
210
classify_wf_parser.add_argument('--blastp', action="store_true", default=False, help="use blastp instead of diamond")
211
+
classify_wf_parser.add_argument('--sensitive', action="store_true", default=False, help="use sensitive mode of DIAMOND")
209
212
classify_wf_parser.add_argument('--keep_headers', action="store_true", default=False, help="indicates FASTA headers already have the format <genome_id>~<gene_id>")
210
213
classify_wf_parser.add_argument('--keep_rbhs', help="create file with reciprocal best hits", action='store_true')
211
214
classify_wf_parser.add_argument('--tmp_dir', action=ChangeTempAction, default=tempfile.gettempdir(), help="specify alternative directory for temporary files")
0 commit comments