Metadata-Version: 2.1
Name: rdmlpython
Version: 0.9.16
Summary: A package to read and edit RDML files.
Home-page: https://github.com/RDML-consortium/rdmlpython
Author: Andreas Untergasser
Author-email: andreas@untergasser.de
License: MIT
Platform: UNKNOWN
Requires-Dist: lxml (>=4.2.1)
Requires-Dist: numpy (>=1.17.2)
Requires-Dist: scipy (>=1.3.1)

==========
rdmlpython
==========

The Real-time PCR Data Markup Language (RDML) is a structured and 
universal data standard for exchanging quantitative PCR (qPCR) 
data. The rdmlpython package allows to load, view, modify and 
save RDML files. 

Typical usage may looks like this::
    #!/usr/bin/env python

    from rdmlpython as rdml

    dat = rdml.Rdml('sample.rdml')

    sam = dat.samples()

    for sample in sam:
        print(sample["id"] + " - " + sample["type"])

For more information visit:
https://www.gear-genomics.com/rdml-tools/help.html#LRP-Library


