Skip to content
Snippets Groups Projects
Commit 82032aa9 authored by vvanoost's avatar vvanoost
Browse files

correction SAM tools

parent da24408f
No related branches found
No related tags found
No related merge requests found
......@@ -94,10 +94,16 @@ profiles {
docker.temp = 'auto'
docker.enabled = true
process {
$sort_bam {
$sort_bam_forward {
container = "samtools:1.7"
}
$index_bam {
$index_bam_forward {
container = "samtools:1.7"
}
$sort_bam_reverse {
container = "samtools:1.7"
}
$index_bam_reverse {
container = "samtools:1.7"
}
$split_bam {
......@@ -107,10 +113,16 @@ profiles {
}
sge {
process{
$trimming {
$sort_bam_forward {
beforeScript = "module purge; module load SAMtools/1.7"
}
$index_bam_forward {
beforeScript = "module purge; module load SAMtools/1.7"
}
$sort_bam_reverse {
beforeScript = "module purge; module load SAMtools/1.7"
}
$index_bam {
$index_bam_reverse {
beforeScript = "module purge; module load SAMtools/1.7"
}
$split_bam {
......
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