Skip to content

Commit

Permalink
Fixed test error
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-sturm committed Feb 15, 2023
1 parent 3acbb14 commit d2ad691
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions src/GSvar/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1169,6 +1169,7 @@ void MainWindow::on_actionDebug_triggered()
*/

//search for SVs with breakpoints inside genes matching the phenotype
/*
NGSD db;
QSharedPointer<QFile> file = Helper::openFileForWriting("C:\\Marc\\large_sv_breakpoints.tsv");
QTextStream ostream(file.data());
Expand Down Expand Up @@ -1281,6 +1282,7 @@ void MainWindow::on_actionDebug_triggered()
}
ostream2 << ps << "\t" << hpos.join(", ") << "\t" << pheno_genes.count() << "\t" << roi.baseCount() << "\t" << c_svs_nofilter << "\t" << svs.count() << "\t" << c_snv_in_roi << endl;
}
*/
}
else if (user=="ahgscha1")
{
Expand Down
2 changes: 1 addition & 1 deletion src/cppNGSD-TEST/data_out/germline_report1.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h4>Technischer Report zur bioinformatischen Analyse</h4>
<p><b>Filterkriterien </b>
<br />&nbsp;&nbsp;&nbsp;&nbsp;- Allele frequency &le; 1.00%
<br />Gefundene Varianten in Zielregion gesamt: 319
<br />Anzahl Varianten ausgew&auml;hlt f&uuml;r Report: 0
<br />Anzahl SNVs/InDels ausgew&auml;hlt f&uuml;r Report: 0
<br />Anzahl CNVs ausgew&auml;hlt f&uuml;r Report: 0
<br />Anzahl SVs ausgew&auml;hlt f&uuml;r Report: 0
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/cppNGSD-TEST/data_out/germline_report2.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h4>Technischer Report zur bioinformatischen Analyse</h4>
<p><b>Filterkriterien </b>
<br />&nbsp;&nbsp;&nbsp;&nbsp;- Allele frequency &le; 1.00%
<br />Gefundene Varianten in Zielregion gesamt: 135
<br />Anzahl Varianten ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl SNVs/InDels ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl CNVs ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl SVs ausgew&auml;hlt f&uuml;r Report: 3
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/cppNGSD-TEST/data_out/germline_report4.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h4>Technischer Report zur bioinformatischen Analyse</h4>
<p><b>Filterkriterien </b>
<br />&nbsp;&nbsp;&nbsp;&nbsp;- Allele frequency &le; 1.00%
<br />Gefundene Varianten in Zielregion gesamt: 135
<br />Anzahl Varianten ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl SNVs/InDels ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl CNVs ausgew&auml;hlt f&uuml;r Report: 2
<br />Anzahl SVs ausgew&auml;hlt f&uuml;r Report: 3
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/cppNGSD/GermlineReportGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ QString GermlineReportGenerator::trans(const QString& text)
de2en["Ph&auml;notyp"] = "Phenotype information";
de2en["Filterkriterien"] = "Criteria for variant filtering";
de2en["Gefundene Varianten in Zielregion gesamt"] = "Variants in target region";
de2en["Anzahl Varianten ausgew&auml;hlt f&uuml;r Report"] = "Variants selected for report";
de2en["Anzahl SNVs/InDels ausgew&auml;hlt f&uuml;r Report"] = "SNVs/InDels selected for report";
de2en["Anzahl CNVs ausgew&auml;hlt f&uuml;r Report"] = "CNVs selected for report";
de2en["Anzahl SVs ausgew&auml;hlt f&uuml;r Report"] = "SVs selected for report";
de2en["Anzahl anderer Varianten ausgew&auml;hlt f&uuml;r Report"] = "Other variants selected for report";
Expand Down
2 changes: 1 addition & 1 deletion src/cppREST/SslServer.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "SslServer.h"

SslServer::SslServer(QObject *parent, bool insecure) :
SslServer::SslServer(QObject *parent) :
QTcpServer(parent)
{
current_ssl_configuration_ = QSslConfiguration::defaultConfiguration();
Expand Down
2 changes: 1 addition & 1 deletion src/cppREST/SslServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CPPRESTSHARED_EXPORT SslServer : public QTcpServer
Q_OBJECT

public:
SslServer(QObject *parent = nullptr, bool insecure = false);
SslServer(QObject *parent = nullptr);
virtual ~SslServer();
QSslConfiguration getSslConfiguration() const;
void setSslConfiguration(const QSslConfiguration &ssl_configuration);
Expand Down
1 change: 1 addition & 0 deletions src/tools.pro
Original file line number Diff line number Diff line change
Expand Up @@ -517,3 +517,4 @@ NGSDExportStudyGHGA.depends = cppNGSD

SUBDIRS += VcfSubstract
tools-TEST.depends += VcfSubstract
VcfSubstract.depends = cppNGS

0 comments on commit d2ad691

Please sign in to comment.