Skip to content

Commit

Permalink
Testing v0.1.1 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
PubuduSaneth authored Sep 24, 2024
2 parents fff8335 + 92d014e commit 556ba52
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
16 changes: 8 additions & 8 deletions workflows/conf/resource.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,24 @@ process {
// Specify resources for each process

withName:'pbrun_fq2bam' {
memory='120 GB'
cpus='42'
memory='412 GB'
cpus='96'
gpu='4'
}
// pbrun_applybqsr is recommended to run on 1 GPU
withName:'pbrun_applybqsr' {
memory='120 GB'
cpus='42'
memory='412 GB'
cpus='96'
gpu='1'
}
withName:'pbrun_deepvariant' {
memory='120 GB'
cpus='42'
memory='412 GB'
cpus='96'
gpu='4'
}
withName:'pbrun_haplotypecaller' {
memory='120 GB'
cpus='42'
memory='412 GB'
cpus='96'
gpu='4'
}

Expand Down
1 change: 1 addition & 0 deletions workflows/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ profiles {
apptainer.enabled = true
apptainer.autoMounts = true
includeConfig 'conf/slurm.conf'
includeConfig 'conf/resource.conf'
}
docker {
docker.enabled = true
Expand Down
1 change: 1 addition & 0 deletions workflows/templates/pbrun_fq2bam.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ pbrun fq2bam \
--in-fq ${R1} ${R2} \
\${INTERVALS} \
--knownSites \${KNOWN_SITES} \
--num-gpus ${task.gpu} \
--out-bam ${S_NAME}_pbrun_fq2bam_${PROCESSOR}.bam \
--out-recal-file ${S_NAME}_${PROCESSOR}_recal_gpu.txt \
--tmp-dir .

0 comments on commit 556ba52

Please sign in to comment.