Skip to content

Commit

Permalink
put results path dir into a file to create a channel
Browse files Browse the repository at this point in the history
  • Loading branch information
julienfumey committed Jan 11, 2023
1 parent 48842cf commit 85dc375
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analyse_wg_ncbi.nf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ params.buscoRefFile="mammalia_odb10"
params.buscoDLpath="/pasteur/appa/homes/jfumey/busco/busco_downloads/"

groupe=params.groupe
resultsDir=params.resultspath
resultsDir=file(params.resultspath)
ncbiapikey=params.ncbiapikey
buscoRefFile=params.buscoRefFile
buscoDLpath=params.buscoDLpath
Expand Down Expand Up @@ -267,7 +267,7 @@ process extractResults{

script:
"""
extractResult.py --input ${json} --species ${spName.replaceAll(/[^a-zA-Z0-9\-\_]/,'_')} --genomeFile ${fasta.getName()} --output busco_results.csv
extractResult.py --input ${json} --species ${spName.replaceAll(/[^a-zA-Z0-9\-\_]/,'_')} --genomeFile ${fasta.getName()} --output "busco_results.csv"
"""
}

Expand Down

0 comments on commit 85dc375

Please sign in to comment.