Skip to content
Snippets Groups Projects
Commit cc5dda96 authored by nfontrod's avatar nfontrod
Browse files

src/nf_modules/Hisat2/hisat2.config : nextflow configuration file for hista2

parent 9ec9a8ad
No related branches found
No related tags found
2 merge requests!12Creation of a nexflow module for Hisat2,!9Hisat2 working on SGE and docker
profiles {
docker {
docker.temp = 'auto'
docker.enabled = true
process {
$index_fasta {
container = "hisat2:2.0.0"
}
$mapping_fastq {
container = "hisat2:2.0.0"
}
$bam_converter {
container = "samtools:1.7"
}
}
}
sge {
process{
$index_fasta {
beforeScript = "module purge; module load Hisat2/2.0.0"
executor = "sge"
cpus = 1
memory = "5GB"
time = "6h"
queueSize = 1000
pollInterval = '60sec'
queue = 'h6-E5-2667v4deb128'
penv = 'openmp8'
}
$mapping_fastq {
beforeScript = "module purge; module load Hisat2/2.0.0"
executor = "sge"
cpus = 4
memory = "5GB"
time = "6h"
queueSize = 1000
pollInterval = '60sec'
queue = 'h6-E5-2667v4deb128'
penv = 'openmp8'
}
$bam_converter {
beforeScript = "module purge; module load SAMtools/1.5"
executor = "sge"
cpus = 4
memory = "5GB"
time = "6h"
queueSize = 1000
pollInterval = '60sec'
queue = 'h6-E5-2667v4deb128'
penv = 'openmp8'
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment