We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do something like this
process DUPLICATION_RATE { cpus params.cpus memory params.memory tag "${name}" //publishDir "${params.output}/${name}/metrics/coverage", mode: "copy" //publishDir "${params.output}/${name}/", mode: "copy", pattern: "software_versions.*" conda (params.enable_conda ? "bioconda::samtools=1.15.1" : null) input: tuple val(name), file(bam), file(bai) output: file("${name}.duplication_rate.tsv") script: """ samtools flagstat -@ ${task.cpus} ${bam} > output.txt parse_duplication_rate.py output.txt """ }
The text was updated successfully, but these errors were encountered:
priesgo
No branches or pull requests
Do something like this
The text was updated successfully, but these errors were encountered: