Skip to content
Snippets Groups Projects
Commit caeb8ea8 authored by Jonathan Gesell's avatar Jonathan Gesell
Browse files

Update .gitlab-ci.yml

parent 6f721d95
3 merge requests!37v0.0.1,!27Develop,!26Resolve "Chunk bam for parallel tin calculation"
Pipeline #6378 failed with stages
in 3 minutes and 36 seconds
......@@ -69,7 +69,9 @@ dedupData:
- singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' java -jar /picard/build/libs/picard.jar MarkDuplicates I=./test_data/bam/small/Q-Y5JA_1M.se.sorted.bam O=Q-Y5JA_1M.se.deduped.bam M=Q-Y5JA_1M.se.deduped.Metrics.txt REMOVE_DUPLICATES=true
- singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' samtools sort -@ `nproc` -O BAM -o Q-Y5JA_1M.se.sorted.deduped.bam ./test_data/bam/small/Q-Y5JA_1M.se.deduped.bam
- singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' samtools index -@ `nproc` -b ./test_data/bam/small/Q-Y5JA_1M.se.sorted.deduped.bam Q-Y5JA_1M.se.sorted.deduped.bam.bai
- for i in {chr1,chr2,chr8}; do echo "singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' samtools view -b Q-Y5JA_1M.se.sorted.deduped.bam ${i} > Q-Y5JA_1M.se.sorted.deduped.${i}.bam; singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' samtools index -@ \`nproc\` -b Q-Y5JA_1M.se.sorted.deduped.${i}.bam Q-Y5JA_1M.se.sorted.deduped.${i}.bam.bai"; done | parallel -j `nproc` -k
- singularity run 'docker://bicf/gudmaprbkdedup:2.0.0' "for i in {chr1,chr2,chr8}; do
echo \"samtools view -b Q-Y5JA_1M.se.sorted.deduped.bam \${i} > Q-Y5JA_1M.se.sorted.deduped.\${i}.bam; samtools index -@ \`nproc\` -b Q-Y5JA_1M.se.sorted.deduped.\${i}.bam Q-Y5JA_1M.se.sorted.deduped.\${i}.bam.bai;\";
done | parallel -j `nproc` -k"
- pytest -m dedupData
makeBigWig:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment