Skip to content
Snippets Groups Projects
Commit 5a44352b authored by Langella Olivier's avatar Langella Olivier
Browse files

Merge branch 'renne' into 'master'

Correct sample sheet error for tdf files #33

See merge request !32
parents 8ca47bc8 529c9784
No related branches found
No related tags found
1 merge request!32Correct sample sheet error for tdf files https://forgemia.inra.fr/pappso/xtpcpp/-/issues/33
......@@ -153,7 +153,15 @@ SampleSheet::writeIdentificationDataSource(
{
if(msrun_sp->findMsRunFile())
{
msrun_sp->checkMsRunStatistics();
if(QFileInfo(msrun_sp->getFileName()).completeSuffix() == "tdf")
{
msrun_sp->checkMsRunStatisticsForTdf(
new MsRunStatisticsHandler());
}
else
{
msrun_sp->checkMsRunStatistics();
}
}
msrun_sp->freeMsRunReaderSp();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment