2020-09-10 15:45:11 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:29:50 +00:00
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2020-10-14 17:29:50 +00:00
|
|
|
|
2020-09-10 15:45:11 +00:00
|
|
|
process SALMON_QUANT {
|
|
|
|
tag "$meta.id"
|
|
|
|
label "process_medium"
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
2020-09-10 15:45:11 +00:00
|
|
|
|
2021-02-16 23:58:23 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::salmon=1.4.0" : null)
|
2020-12-13 23:41:53 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/salmon:1.4.0--hf69c8f4_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/salmon:1.4.0--hf69c8f4_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
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
2020-12-09 21:20:52 +00:00
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
prefix = options.suffix ? "${meta.id}${options.suffix}" : "${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 \\
|
2020-10-14 17:29:50 +00:00
|
|
|
$options.args \\
|
2020-09-10 15:45:11 +00:00
|
|
|
-o $prefix
|
|
|
|
|
|
|
|
salmon --version | sed -e "s/salmon //g" > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|