mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Add phantompeakqualtools
This commit is contained in:
parent
6fe4ec16df
commit
e94676a2b2
2 changed files with 38 additions and 0 deletions
1
software/phantompeakqualtools/functions.nf
Symbolic link
1
software/phantompeakqualtools/functions.nf
Symbolic link
|
@ -0,0 +1 @@
|
|||
../lib/functions.nf
|
37
software/phantompeakqualtools/main.nf
Normal file
37
software/phantompeakqualtools/main.nf
Normal file
|
@ -0,0 +1,37 @@
|
|||
// Import generic module functions
|
||||
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||||
|
||||
def VERSION = '1.2.2'
|
||||
|
||||
process PHANTOMPEAKQUALTOOLS {
|
||||
tag "$meta.id"
|
||||
label 'process_medium'
|
||||
publishDir "${params.outdir}",
|
||||
mode: params.publish_dir_mode,
|
||||
saveAs: { filename -> saveFiles(filename:filename, options:options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
||||
|
||||
container "quay.io/biocontainers/phantompeakqualtools:1.2.2--0"
|
||||
//container "https://depot.galaxyproject.org/singularity/phantompeakqualtools:1.2.2--0"
|
||||
|
||||
conda (params.conda ? "bioconda::phantompeakqualtools=1.2.2" : null)
|
||||
|
||||
input:
|
||||
tuple val(meta), path(bam)
|
||||
val options
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*.out"), emit: spp
|
||||
tuple val(meta), path("*.pdf"), emit: pdf
|
||||
tuple val(meta), path("*.Rdata"), emit: rdata
|
||||
path "*.version.txt", emit: version
|
||||
|
||||
script:
|
||||
def software = getSoftwareName(task.process)
|
||||
def ioptions = initOptions(options)
|
||||
def prefix = ioptions.suffix ? "${meta.id}${ioptions.suffix}" : "${meta.id}"
|
||||
"""
|
||||
RUN_SPP=`which run_spp.R`
|
||||
Rscript -e "library(caTools); source(\\"\$RUN_SPP\\")" -c="$bam" -savp="${prefix}.spp.pdf" -savd="${prefix}.spp.Rdata" -out="${prefix}.spp.out" -p=$task.cpus
|
||||
echo $VERSION > ${software}.version.txt
|
||||
"""
|
||||
}
|
Loading…
Reference in a new issue