Skip to content
Snippets Groups Projects
Commit e7d917ee authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Update changelog

parent 57834f48
Branches
Tags
2 merge requests!58Develop,!56Resolve "Detect error in inferMetadata for tracking"
......@@ -8,6 +8,11 @@
* Upload mRNA QC
* Create and upload output bag
* Add optional to not upload
* Update references to use bags
* Update to newer references (GRCh38.p13.v36 and GRCm38.p6.vM25)
* Use production server for data-hub reference call
* Stop pipeline if submitted does not match infered
* Update execution run with "Success" or "Error"
**Background**
* Remove (comment out) option to pull references from S3
......@@ -17,10 +22,12 @@
* Changed order of steps so that fastqc is done after the trim step
* Change docker images to production
* Add automated version badges
* Only calculate/report tin values on regular chromosomes (from gtf)
*Known Bugs*
* Datahub reference pull uses dev.gudmap.org as source until referencencs are placed on production
* Override params (inputBag, fastq, species) aren't checked for integrity
*
<hr>
......
......@@ -1248,7 +1248,7 @@ process dedupData {
samtools index -@ `nproc` -b ${repRID}_sorted.deduped.bam ${repRID}_sorted.deduped.bam.bai
# split the deduped BAM file for multi-threaded tin calculation
for i in `samtools view ${repRID}_sorted.deduped.bam | cut -f3 | sort | uniq`;
for i in `samtools view ${repRID}_sorted.deduped.bam | grep -o chr.* | cut -f3 | sort | uniq`;
do
echo "echo \"LOG: splitting each chromosome into its own BAM and BAI files with Samtools\"; samtools view -b ${repRID}_sorted.deduped.bam \${i} 1>> ${repRID}_sorted.deduped.\${i}.bam; samtools index -@ `nproc` -b ${repRID}_sorted.deduped.\${i}.bam ${repRID}_sorted.deduped.\${i}.bam.bai"
done | parallel -j `nproc` -k
......
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