2020-09-10 15:45:11 +00:00
|
|
|
process SALMON_QUANT {
|
|
|
|
tag "$meta.id"
|
|
|
|
label "process_medium"
|
|
|
|
|
2021-07-28 08:10:44 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::salmon=1.5.2' : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/salmon:1.5.2--h84f40af_0' :
|
|
|
|
'quay.io/biocontainers/salmon:1.5.2--h84f40af_0' }"
|
2020-09-10 15:45:11 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(reads)
|
|
|
|
path index
|
|
|
|
path gtf
|
2020-12-09 21:20:52 +00:00
|
|
|
path transcript_fasta
|
|
|
|
val alignment_mode
|
2021-06-17 13:13:47 +00:00
|
|
|
val lib_type
|
2020-12-17 23:50:24 +00:00
|
|
|
|
2020-09-10 15:45:11 +00:00
|
|
|
output:
|
|
|
|
tuple val(meta), path("${prefix}"), emit: results
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2020-09-10 15:45:11 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2020-09-10 15:45:11 +00:00
|
|
|
script:
|
2021-12-07 14:00:43 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
prefix = task.ext.prefix ?: "${meta.id}"
|
2020-09-10 15:45:11 +00:00
|
|
|
|
2020-12-09 21:20:52 +00:00
|
|
|
def reference = "--index $index"
|
|
|
|
def input_reads = meta.single_end ? "-r $reads" : "-1 ${reads[0]} -2 ${reads[1]}"
|
|
|
|
if (alignment_mode) {
|
|
|
|
reference = "-t $transcript_fasta"
|
|
|
|
input_reads = "-a $reads"
|
|
|
|
}
|
2020-12-17 23:50:24 +00:00
|
|
|
|
2021-06-17 13:13:47 +00:00
|
|
|
def strandedness_opts = [
|
|
|
|
'A', 'U', 'SF', 'SR',
|
|
|
|
'IS', 'IU' , 'ISF', 'ISR',
|
|
|
|
'OS', 'OU' , 'OSF', 'OSR',
|
|
|
|
'MS', 'MU' , 'MSF', 'MSR'
|
|
|
|
]
|
|
|
|
def strandedness = 'A'
|
|
|
|
if (lib_type) {
|
|
|
|
if (strandedness_opts.contains(lib_type)) {
|
|
|
|
strandedness = lib_type
|
|
|
|
} else {
|
|
|
|
log.info "[Salmon Quant] Invalid library type specified '--libType=${lib_type}', defaulting to auto-detection with '--libType=A'."
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
strandedness = meta.single_end ? 'U' : 'IU'
|
|
|
|
if (meta.strandedness == 'forward') {
|
|
|
|
strandedness = meta.single_end ? 'SF' : 'ISF'
|
|
|
|
} else if (meta.strandedness == 'reverse') {
|
|
|
|
strandedness = meta.single_end ? 'SR' : 'ISR'
|
|
|
|
}
|
2020-09-10 15:45:11 +00:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
salmon quant \\
|
|
|
|
--geneMap $gtf \\
|
|
|
|
--threads $task.cpus \\
|
|
|
|
--libType=$strandedness \\
|
2020-12-09 21:20:52 +00:00
|
|
|
$reference \\
|
|
|
|
$input_reads \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2020-09-10 15:45:11 +00:00
|
|
|
-o $prefix
|
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
salmon: \$(echo \$(salmon --version) | sed -e "s/salmon //g")
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2020-09-10 15:45:11 +00:00
|
|
|
"""
|
|
|
|
}
|