Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions humann2/search/nucleotide.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def index(custom_database):

args=["-f",custom_database,index_name]

#add threads
if config.threads > 1:
args+=["--threads",config.threads]

outfiles=[index_name + ext for ext in config.bowtie2_index_ext_list]

# if custom_database is large (>4G) then use the --large-index flag
Expand Down