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

Merge branch '8-makeBigWig' of git.biohpc.swmed.edu:gudmap_rbk/rna-seq into 8-makeBigWig

Merge in the pytests for makeBigWig
parents 9363735e 5d2d6ef6
Branches
Tags
2 merge requests!37v0.0.1,!19Resolve "process_makeBigWig"
Pipeline #5952 failed with stages
in 12 minutes and 51 seconds
......@@ -64,8 +64,16 @@ alignData:
dedupData:
stage: unit
script:
- singularity exec 'docker://bicf/picard2.21.7: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' 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 ./test_data/bam/small/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 ./test_data/bam/small/Q-Y5JA_1M.se.sorted.deduped.bai
- pytest -m dedupData
makeBigWig:
stage: unit
script:
- singularity run 'docker://bicf/deeptools3.3:2.0.0' bamCoverage -p `nproc` -b ./test_data/bam/small/Q-Y5JA_1M.se.sorted.deduped.bam -o ./test_data/bam/small/Q-Y5JA_1M.se.bw
- pytest -m makeBigWig
fastqc:
stage: unit
......
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