mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
46 lines
1.4 KiB
Text
46 lines
1.4 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
def options = initOptions(params.options)
|
|
|
|
process STAR_GENOMEGENERATE {
|
|
tag "$fasta"
|
|
label 'process_high'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:'') }
|
|
|
|
// Note: 2.7X indices incompatible with AWS iGenomes.
|
|
conda (params.enable_conda ? "bioconda::star=2.6.1d=0" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/star:2.6.1d--0"
|
|
} else {
|
|
container "quay.io/biocontainers/star:2.6.1d--0"
|
|
}
|
|
|
|
input:
|
|
path fasta
|
|
path gtf
|
|
|
|
output:
|
|
path "star" , emit: index
|
|
path "*.version.txt", emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def memory = task.memory ? "--limitGenomeGenerateRAM ${task.memory.toBytes() - 100000000}" : ''
|
|
"""
|
|
mkdir star
|
|
STAR \\
|
|
--runMode genomeGenerate \\
|
|
--genomeDir star/ \\
|
|
--genomeFastaFiles $fasta \\
|
|
--sjdbGTFfile $gtf \\
|
|
--runThreadN $task.cpus \\
|
|
$memory \\
|
|
$options.args
|
|
|
|
STAR --version | sed -e "s/STAR_//g" > ${software}.version.txt
|
|
"""
|
|
}
|