Skip to content

Commit

Permalink
Bug fix: blast tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mahesh-panchal committed May 28, 2024
1 parent ccbe7ea commit de5e6e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/functional_annotation/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ workflow FUNCTIONAL_ANNOTATION {
// No database files found matching the glob pattern
}
make_db : db_files.size() == 1
return [ [ db: fasta.baseName ] , db_files ]
return [ [ id: fasta.baseName ] , db_files ]
with_db : db_files.size() > 1
return [ [ db: fasta.baseName ] , db_files ]
return [ [ id: fasta.baseName ] , db_files ]
}.set { ch_blast_fa }

if ( params.interproscan_database?.endsWith('.tar.gz') ){
Expand Down

0 comments on commit de5e6e3

Please sign in to comment.