mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Update Salmon modules
This commit is contained in:
parent
79a0ce79ab
commit
42f318fe75
1 changed files with 17 additions and 5 deletions
|
@ -5,7 +5,7 @@ params.options = [:]
|
|||
def options = initOptions(params.options)
|
||||
|
||||
process SALMON_INDEX {
|
||||
tag "$fasta"
|
||||
tag "$transcript_fasta"
|
||||
label "process_medium"
|
||||
publishDir "${params.outdir}",
|
||||
mode: params.publish_dir_mode,
|
||||
|
@ -15,19 +15,31 @@ process SALMON_INDEX {
|
|||
container "quay.io/biocontainers/salmon:1.3.0--hf69c8f4_0"
|
||||
|
||||
input:
|
||||
path fasta
|
||||
path genome_fasta
|
||||
path transcript_fasta
|
||||
|
||||
output:
|
||||
path "salmon" , emit: index
|
||||
path "*.version.txt", emit: version
|
||||
|
||||
script:
|
||||
def software = getSoftwareName(task.process)
|
||||
def software = getSoftwareName(task.process)
|
||||
def get_decoy_ids = "grep '^>' $genome_fasta | cut -d ' ' -f 1 > decoys.txt"
|
||||
def gentrome = "gentrome.fa"
|
||||
if (genome_fasta.endsWith('.gz')) {
|
||||
get_decoy_ids = "grep '^>' <(gunzip -c $genome_fasta) | cut -d ' ' -f 1 > decoys.txt"
|
||||
gentrome = "gentrome.fa.gz"
|
||||
}
|
||||
"""
|
||||
$get_decoy_ids
|
||||
sed -i.bak -e 's/>//g' decoys.txt
|
||||
cat $transcript_fasta $genome_fasta > $gentrome
|
||||
|
||||
salmon \\
|
||||
index \\
|
||||
--threads $task.cpus \\
|
||||
-t $fasta \\
|
||||
-t gentrome.fa \\
|
||||
-d decoys.txt \\
|
||||
$options.args \\
|
||||
-i salmon
|
||||
salmon --version | sed -e "s/salmon //g" > ${software}.version.txt
|
||||
|
|
Loading…
Reference in a new issue