Skip to content
Snippets Groups Projects
Commit f9752328 authored by Xavier Grand's avatar Xavier Grand
Browse files

binsize modification in deeptools main.nf function bamtobigwig

parent aa917c02
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ params.paired_end = true
*/
params.fastq = "data/tinyTestDataset/fastq/*_{1,2}.fastq"
/* Fastq files containing ribosome footprint
/* Fastq files
@type: Files
*/
......
......@@ -41,7 +41,7 @@ process bam_to_bigwig {
script:
"""
bamCoverage -p ${task.cpus} --ignoreDuplicates -b ${bam} \
bamCoverage -p ${task.cpus} --ignoreDuplicates -bs 10 -b ${bam} \
-o ${bam.simpleName}.bw
"""
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment