Skip to content

Commit

Permalink
Simplifies #5, outputs broad overview of mapped reads
Browse files Browse the repository at this point in the history
  • Loading branch information
immanp committed Jan 10, 2014
1 parent dffa49a commit 34c0cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quality_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def gatherReport(self): #computes rates
## change name to pass sample name to method


sample = "Name" + +"\t"+ totalReads+"\t"+st(self.rawReads.mappedTotal)+"\t"+str(self.rawReads.mitochondrial())+"\t"+str(self.rawReads.ribosomal())"\t"+st(mapping)+"\t"+str(chrMTrate)+"\t"+str(rRNArate)+"\n"
sample = "Name" +"\t"+ totalReads+"\t"+str(self.rawReads.mappedTotal)+"\t"+str(self.rawReads.mitochondrial())+"\t"+str(self.rawReads.ribosomal())+"\t"+str(mapping)+"\t"+str(chrMTrate)+"\t"+str(rRNArate)+"\n"
#sample = "Name" + "\t" + str(mapping) +"\t"+ str(intragenic)+ "\t" + str(exonic) + "\t" + str(intronic) + "\t"+ str(intragenic) + "\t" + str(rRNArate)+"\t"+str(chrMTrate) + "\n"
return sample

Expand Down

0 comments on commit 34c0cad

Please sign in to comment.