libpappsomspp
Library for mass spectrometry
Loading...
Searching...
No Matches
pappso::XyMsFileReader Class Reference

#include <xymsfilereader.h>

Inheritance diagram for pappso::XyMsFileReader:
pappso::MsFileReader

Public Member Functions

 XyMsFileReader (const QString &file_name)
virtual ~XyMsFileReader ()
virtual Enums::MsDataFormat getFileFormat () override
virtual std::vector< MsRunIdCstSPtrgetMsRunIds (const QString &run_prefix) override
MsRunReaderselectMsRunReader (const QString &file_name) const

Private Member Functions

virtual bool initialize (std::size_t &line_count)
Private Member Functions inherited from pappso::MsFileReader
 MsFileReader (const QString &file_name)
virtual ~MsFileReader ()

Additional Inherited Members

Private Attributes inherited from pappso::MsFileReader
QString m_fileName
Enums::MsDataFormat m_fileFormat = Enums::MsDataFormat::unknown

Detailed Description

Definition at line 17 of file xymsfilereader.h.

Constructor & Destructor Documentation

◆ XyMsFileReader()

pappso::XyMsFileReader::XyMsFileReader ( const QString & file_name)

Definition at line 28 of file xymsfilereader.cpp.

28 : MsFileReader{file_name}
29{
30}
MsFileReader(const QString &file_name)

References pappso::MsFileReader::MsFileReader().

◆ ~XyMsFileReader()

pappso::XyMsFileReader::~XyMsFileReader ( )
virtual

Definition at line 33 of file xymsfilereader.cpp.

34{
35}

Member Function Documentation

◆ getFileFormat()

Enums::MsDataFormat pappso::XyMsFileReader::getFileFormat ( )
overridevirtual

Implements pappso::MsFileReader.

Definition at line 105 of file xymsfilereader.cpp.

106{
107 return m_fileFormat;
108}
Enums::MsDataFormat m_fileFormat

References pappso::MsFileReader::m_fileFormat.

Referenced by pappso::MsFileAccessor::getMsRunIds().

◆ getMsRunIds()

std::vector< MsRunIdCstSPtr > pappso::XyMsFileReader::getMsRunIds ( const QString & run_prefix)
overridevirtual

Implements pappso::MsFileReader.

Definition at line 112 of file xymsfilereader.cpp.

113{
114 std::vector<MsRunIdCstSPtr> ms_run_ids;
115
116 std::size_t line_count = 0;
117
118 if(!initialize(line_count))
119 return ms_run_ids;
120
121 // Finally create the MsRunId with the file name.
122 MsRunId ms_run_id(m_fileName);
123 ms_run_id.setMsDataFormat(m_fileFormat);
124
125 // We need to set the unambiguous xmlId string.
126 ms_run_id.setXmlId(QString("%1%2").arg(run_prefix).arg(Utils::getLexicalOrderedString(0)));
127
128 // Craft a meaningful sample name because otherwise all the files loaded from
129 // text files will have the same sample name and it will be difficult to
130 // differentiate them.
131 // Orig version:
132 // ms_run_id.setRunId("Single spectrum");
133 // Now the sample name is nothing but the file name without the path.
134
135 QFileInfo file_info(m_fileName);
136
137 // qDebug() << "file name:" << m_fileName;
138
139 QString sample_name = file_info.fileName();
140
141 // qDebug() << "sample name:" << sample_name;
142
143 ms_run_id.setRunId(sample_name);
144
145 // Now set the sample name to the run id:
146
147 ms_run_id.setSampleName(ms_run_id.getRunId());
148
149 // Now set the sample name to the run id:
150
151 ms_run_id.setSampleName(ms_run_id.getRunId());
152
153 // qDebug() << __FILE__ << "@" << __LINE__ << __FUNCTION__ << "()"
154 //<< "Current ms_run_id:" << ms_run_id.toString();
155
156 // Finally make a shared pointer out of it and append it to the vector.
157 ms_run_ids.push_back(std::make_shared<MsRunId>(ms_run_id));
158
159 return ms_run_ids;
160}
static const QString getLexicalOrderedString(unsigned int num)
Definition utils.cpp:73
virtual bool initialize(std::size_t &line_count)

References pappso::Utils::getLexicalOrderedString(), pappso::MsRunId::getRunId(), initialize(), pappso::MsFileReader::m_fileFormat, pappso::MsFileReader::m_fileName, pappso::MsRunId::setMsDataFormat(), pappso::MsRunId::setRunId(), pappso::MsRunId::setSampleName(), and pappso::MsRunId::setXmlId().

Referenced by pappso::MsFileAccessor::getMsRunIds().

◆ initialize()

bool pappso::XyMsFileReader::initialize ( std::size_t & line_count)
privatevirtual

Definition at line 39 of file xymsfilereader.cpp.

40{
41 // Here we just test all the lines of the file to check that they comply with
42 // the xy format.
43
44 line_count = 0;
45
46 QFile file(m_fileName);
47
48 if(!file.open(QFile::ReadOnly | QFile::Text))
49 {
50 qDebug() << "Failed to open file" << m_fileName;
51
52 return 0;
53 }
54
55 QRegularExpressionMatch regExpMatch;
56
57 QString line;
58 bool file_reading_failed = false;
59
60 while(!file.atEnd())
61 {
62 line = file.readLine();
63
64 // We only read a given number of lines from the file, that would be
65 // enough to check if that file has the right syntax or not.
66 // if(linesRead >= 2000)
67 // return true;
68
69 if(line.startsWith('#') || line.isEmpty() || Utils::endOfLineRegExp.match(line).hasMatch())
70 continue;
71
72 qDebug() << "Current xy format line:" << line;
73
74 if(Utils::xyMassDataFormatRegExp.match(line).hasMatch())
75 {
76 ++line_count;
77 continue;
78 }
79 else
80 {
81 // the first line of the text file may include column titles
82 if(line_count > 0)
83 {
84 file_reading_failed = true;
85 break;
86 }
87 }
88 }
89
90 if(!file_reading_failed && line_count >= 1)
91 {
93 return true;
94 }
95
97
98 // qDebug() << "m_fileFormat: " << static_cast<int>(m_fileFormat);
99
100 return false;
101}
static QRegularExpression xyMassDataFormatRegExp
Regular expression matching <numerical value><non-numerical*><numericalvalue>.
Definition utils.h:60
static QRegularExpression endOfLineRegExp
Regular expression that tracks the end of line in text files.
Definition utils.h:69
@ unknown
unknown format
Definition types.h:149

References pappso::Utils::endOfLineRegExp, line, pappso::MsFileReader::m_fileFormat, pappso::MsFileReader::m_fileName, pappso::Enums::unknown, pappso::Enums::xy, and pappso::Utils::xyMassDataFormatRegExp.

Referenced by getMsRunIds().

◆ selectMsRunReader()

MsRunReader * pappso::XyMsFileReader::selectMsRunReader ( const QString & file_name) const

The documentation for this class was generated from the following files: