Skip to content
Snippets Groups Projects
Commit 2dc19a12 authored by elabaron's avatar elabaron
Browse files

src/nf_modules/ribotish/ribotish_quality.nf : typo changes

parent 3505e2de
Branches
No related tags found
No related merge requests found
......@@ -2,8 +2,13 @@ params.bam = "data/*{.bam,.bam.bai}"
params.gff = "data/*.gtf"
params.length = "25,35"
params.th = "0.5"
params.output = "results/quality"
log.info "bam files : ${params.bam}"
log.info "gff file : ${params.gff}"
log.info "footprint length : ${params.length}"
log.info "threashold : ${params.th}"
log.info "output dir : ${params.output}"
Channel
.fromFilePairs( params.bam )
......@@ -16,7 +21,7 @@ Channel
process ribotish_quality {
tag "$file_id"
publishDir "results/quality/", mode: 'copy'
publishDir "${params.output}", mode: 'copy'
input:
set file_id, file(bam) from bam_files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment