Skip to content

Commit

Permalink
src/cppNGSD/GermlineReportGenerator.cpp: removed read length from lrG…
Browse files Browse the repository at this point in the history
…S report
  • Loading branch information
leonschuetz committed Jan 22, 2025
1 parent e1a0b74 commit 4804c8a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cppNGSD/GermlineReportGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,11 @@ void GermlineReportGenerator::writeHTML(QString filename)
stream << "<br />" << trans("Prozessierungssystem-Typ") << ": " << processed_sample_data.processing_system_type << endl;
QString run_id = db_.getValue("SELECT id FROM sequencing_run WHERE name=:0", false, processed_sample_data.run_name).toString();
stream << "<br />" << trans("Sequenziersystem") << ": " << db_.getValue("SELECT d.type FROM device d, sequencing_run r WHERE r.device_id=d.id AND r.id=:0", false, run_id).toString() << endl;
stream << "<br />" << trans("Readl&auml;nge") << ": " << db_.getValue("SELECT recipe FROM sequencing_run WHERE id=:0", false, run_id).toString() << endl;
//ignore read length for lrGS
if (processed_sample_data.processing_system_type != "lrGS")
{
stream << "<br />" << trans("Readl&auml;nge") << ": " << db_.getValue("SELECT recipe FROM sequencing_run WHERE id=:0", false, run_id).toString() << endl;
}
stream << "<br />" << trans("Referenzgenom") << ": " << system_data.genome << endl;
stream << "<br />" << trans("Datum") << ": " << date_.toString("dd.MM.yyyy") << endl;
stream << "<br />" << trans("Analysepipeline") << ": " << data_.variants.getPipeline() << endl;
Expand Down

0 comments on commit 4804c8a

Please sign in to comment.