Skip to content

Commit

Permalink
Temporarilly disabled non-globin metric until finished testing
Browse files Browse the repository at this point in the history
  • Loading branch information
agraubert committed Apr 17, 2019
1 parent af9b788 commit 5fe48d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Metrics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ std::ofstream& operator<<(std::ofstream &stream, rnaseqc::Metrics &counter)
"Mapped Reads",
"Mapped Unique Reads",
"Mismatched Bases",
"Non-Globin Reads",
"Non-Globin Duplicate Reads",
// "Non-Globin Reads",
// "Non-Globin Duplicate Reads",
"Reads excluded from exon counts",
"Reads used for Intron/Exon counts",
"rRNA Reads",
Expand Down
2 changes: 1 addition & 1 deletion src/RNASeQC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ int main(int argc, char* argv[])
output << "Mapping Rate\t" << counter.frac("Mapped Reads", "Unique Mapping, Vendor QC Passed Reads") << endl;
output << "Unique Rate of Mapped\t" << counter.frac("Mapped Unique Reads", "Mapped Reads") << endl;
output << "Duplicate Rate of Mapped\t" << counter.frac("Mapped Duplicate Reads", "Mapped Reads") << endl;
output << "Duplicate Rate of Mapped, excluding Globins\t" << counter.frac("Non-Globin Duplicate Reads", "Non-Globin Reads") << endl;
// output << "Duplicate Rate of Mapped, excluding Globins\t" << counter.frac("Non-Globin Duplicate Reads", "Non-Globin Reads") << endl;
output << "Base Mismatch\t" << counter.frac("Mismatched Bases", "Total Bases") << endl;
output << "End 1 Mapping Rate\t"<< 2.0 * counter.frac("End 1 Mapped Reads", "Unique Mapping, Vendor QC Passed Reads") << endl;
output << "End 2 Mapping Rate\t"<< 2.0 * counter.frac("End 2 Mapped Reads", "Unique Mapping, Vendor QC Passed Reads") << endl;
Expand Down

0 comments on commit 5fe48d8

Please sign in to comment.