Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Mar 17, 2020
1 parent d982c86 commit 1eb72aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main_configuration.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ params {
evalue = "0.00001"
blastFile = ""
diamond = "false"
blastDbpath = "/nfs/db/ncbi/201908/blastdb/db/nr"
blastDbPath = "/nfs/db/ncbi/201908/blastdb/db/nr"
speciesName = "P.vulgaris"
chunkSize = 25
chunkWebSize = 100
Expand Down
2 changes: 1 addition & 1 deletion pipeline.nf
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ log.info "General parameters"
log.info "------------------"
log.info "Protein sequence file : ${params.proteinFile}"
log.info "Annotation file : ${params.gffFile}"
if ( ${params.blastFile} != "" ) {
if ( params.blastFile != "" ) {
log.info "BLAST results file : ${params.blastFile}"
}
log.info "Species name : ${params.speciesName}"
Expand Down

0 comments on commit 1eb72aa

Please sign in to comment.