Illumina / interop

C++ Library to parse Illumina InterOp files
http://illumina.github.io/interop/index.html
GNU General Public License v3.0
75 stars 26 forks source link

Python question: Reading RunParameters.xml #309

Closed kohleman closed 1 year ago

kohleman commented 1 year ago

Hi, I would like to read some values from RunParameters.xml. Instead of parsing the XML file by myself I would rather prefer to use InterOP. Could you point me to the documentation, give me a simple example or even a gist?

ezralanglois commented 1 year ago

Hi, InterOp does not parse the full RunParameters.xml. It is only parsed to get the instrument_type https://github.com/Illumina/interop/blob/master/interop/model/run/parameters.h

kohleman commented 1 year ago

Hi Robert, thanks for your answer. I'll parse it then by myself.