PyMLRS


NamePyMLRS JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/PyPCR/PyMLRS
SummaryA library for processing and interpreting DNA high-resolution melt and amplification curves for the meningoencephalitis panel.
upload_time2024-04-27 06:53:01
maintainerNone
docs_urlNone
authorChandru, Vikram
requires_python>=3.6
licenseMIT
keywords high resolution melt amplification curve cycle threshold pcr rt-pcr meningoencephalitis mep pathogens bharathiar university
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align='center'>
    <img src="https://github.com/PyPCR/PyMLRS/blob/main/PyMLRS.png?raw=true", alt="PyMLR Logo">
</div>

<div align="center">
    <br>
        <a href="" width="250px" height="250px" alt="pyHRM"></a>
      <br>
    <h1>PyMLRS</h1>
    <h2><b>A Python library for processing and interpreting DNA High-Resolution Melt and Amplification Curves for the Meningoencephalitis Panel</b></h2>
        <h4>
        <a href="#installing-with-pip">Installation</a>
        •
        <a href="#Features">Features</a>
        •
        <a href="#Documentation">Documentation</a>
        •
        <a href="#getting-help">Help</a>
    </h4>
</div>

# PyMLRS
<p align="justify">
PyMLRS primarily focuses on feature extraction and interpreting results from parsed data. here the first step is to parses files into the .rex format, extracting essential information such as HRM (High Resolution Melting) data, cycle threshold (CT) values, and sample details. It facilitates feature extraction from HRM data by converting it into melt curves, and for parsed CT data, it identifies take-off points crucial for determining the severity of affected pathogens. PyMLRS integrates these features to interpret results and generate comprehensive reports for respective identifiers.<span>
</p>


## Installing with PIP

```
python -m pip install PyMLRS
```
or
```
pip3 install PyMLRS
```

<h1> Classifiers </h1>

<table>
  <tr>
    <td nowrap><strong>Development Status</strong></td><td href = "https://pypi.org/search/?c=Development+Status+%3A%3A+5+-+Production%2FStable"><i >5 - Production/Stable </i></td>
  </tr>
  <tr>
    <td nowrap><strong>Intened Audience</strong></td><td><i>Healthcare</i></td>
  </tr>
  <tr>
    <td nowrap><strong>License</strong></td><td><i>OSI Approved :: MIT License </i></td>
  </tr>
  <tr>
    <td nowrap><strong>Operating System</strong></td><td><i>Microsoft :: Windows :: Windows 10 </i></td>
  </tr>
  <tr>
    <td nowrap><strong>Programming Language</strong></td><td><i>Python 3</i></td>
  </tr>
</table>

## Features
<ol>
  <li>Rextractor
    <ol>
      <li>Extract the data from Rotor Gene Experiment(.rex) files.
        <ol>
          <li>High Resolution Melt (HRM)</li>
          <li>Amplification Curve - Cycle Time (CT)</li>
        </ol>
      </li>
      <li>Processing Data
        <ol>
          <li>Filter Only MEP Pathogens</li>
          <li>Separate by patients</li>
        </ol>
      </li>
    </ol>
  </li>
  <li>MEP panel
    <ol>
      <li>Feature Extraction
        <ol>
          <li>Target – Pathogen Name</li>
          <li>Temperature (Peak of the Melt Curve)</li>
          <li>Width</li>
          <li>Prominence</li>
          <li>Take of Point</li>
          <li>Take down Point</li>
          <li>Area Under the curve</li>
        </ol>
      </li>
      <li>Interactive Visulization.
        <ol>
          <li>High Resolution Melt</li>
          <li>Melt Curve</li>
          <li>Amplification Curve</li>
        </ol>
      </li>
      <li>Result
        <ol>
          <li>Interpreting the results of the pathogens</li>
          <li>Generate report for test Results</li>
        </ol>
      </li>
    </ol>
  </li>
</ol>


<h1> Input Data format </h1>
<p align="justify">
The input file for the library is the run file from the Rotor-Gene machine, which is in the format of a Rotor-Gene Experiment (.rex) file, and we can directly provide the .rex file without any preprocessing.</p>

## Documentation
<html>
<body>
    <h2>Importing Library</h2>
    <pre><code>from PyMLRS.Rextractor import rex_reader
from PyMLRS.Mep_panel import Mep_diagnoser</code></pre>
    <h2>PyMLRS.Rextractor.rex_reader()</h2>
    <pre><code>PyMLRS.Rextractor.rex_reader(path = None)</code></pre>
    <h4>Parameters:</h4>
    <p class="param"><b>path :</b> <i>Rotor Gene Experiment file path (.rex)</i></p>
    <h4>Returns:</h4>
    <p class="param"><b>A dictionary containing various patient ID for each separate patients:</b> <i>class 'dict_keys'</i></p>
    <p class="param"><b>A dictionary containing various dataframes (HRM) for respective patient ID's:</b> <i>class 'dict_keys'</i></p>
    <p class="param"><b>A dictionary containing various dataframes (CT) for respective patient ID's:</b> <i>class 'dict_keys'</i></p>
</body>
</html>

<br>

### Example
```
from PyMLRS.Rextractor import rex_reader
Patient_ids,raw_hrm,raw_ct = rex_reader("your .rex file path")
```
## PyMLRS.Mep_panel.Mep_diagnoser 
```
md = Mep_diagnoser()

hrm_data = md.transform_hrm(dataframe: Any,figure: bool = False)
ct_data = md.transform_ct(dataframe: Any,figure: bool = False)
melt = md.hrm_to_melt(figure: bool = False)
hrm_features = md.hrm_feature_extraction()
ct_values = md.ct_value()
md.Tm_threshold()
result = md.predict_result()
report = md.report( output_fie_path: Any,patient_id: Any)
```

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h2>Function Documentation</h2>

<h2><code>transform_hrm</code></h2>

<p><strong>Parameters:</strong></p>
<ul>
  <li><code>dataframe</code>: HRM data obtained from <code>rex_reader()</code>.</li>
  <li><code>figure</code> (optional): Boolean flag indicating whether to generate an HRM graph.</li>
</ul>

<p><strong>Returns:</strong></p>
<ul>
  <li>Processed HRM data.</li>
  <li>If <code>figure</code> is <code>True</code>, an HRM graph is also returned.</li>
</ul>

<h2><code>transform_ct</code></h2>

<p><strong>Parameters:</strong></p>
<ul>
  <li><code>dataframe</code>: CT data acquired from <code>rex_reader()</code>.</li>
  <li><code>figure</code> (optional): Boolean flag to specify if a CT graph should be produced.</li>
</ul>

<p><strong>Returns:</strong></p>
<ul>
  <li>Processed CT data.</li>
  <li>If <code>figure</code> is <code>True</code>, a CT graph is included in the output.</li>
</ul>

<h2><code>hrm_to_melt</code></h2>

<p><strong>Parameters:</strong></p>
<ul>
  <li><code>figure</code> (optional): Boolean flag for generating a melt graph.</li>
</ul>

<p><strong>Returns:</strong></p>
<ul>
  <li>Melted data.</li>
  <li>If <code>figure</code> is <code>True</code>, a melt graph is also provided.</li>
</ul>

<h2><code>hrm_feature_extraction</code></h2>

<p><strong>No Parameters Needed</strong></p>

<p><strong>Returns:</strong></p>
<ul>
  <li>HRM features extracted from the data.</li>
</ul>

<h2><code>ct_value</code></h2>

<p><strong>No Parameters Needed</strong></p>

<p><strong>Returns:</strong></p>
<ul>
  <li>CT values derived from the data.</li>
</ul>

<h2><code>predict_result</code></h2>

<p><strong>No Parameters Needed</strong></p>

<p><strong>Returns:</strong></p>
<ul>
  <li>Predicted result based on the processed data.</li>
</ul>

<h2><code>report</code></h2>

<p><strong>Parameters:</strong></p>
<ul>
  <li><code>output_file_path</code>: Path to save the generated report.</li>
  <li><code>patient_id</code>: Identifier for the patient.</li>
</ul>

<p><strong>Returns:</strong></p>
<ul>
  <li>Generated report based on the analysis.</li>
</ul>

</body>
</html>


### Sample code Snippet for interpreting individual result 
```
from PyMLRS.Rextractor import rex_reader
from PyMLRS.Mep_panel import Mep_diagnoser

# File extraction from the rex file
patient_id,hrm,ct = rex_reader("Your .rex file path")
print(patient_id)
```

```
# Create Object
md = Mep_diagnoser()

# Interpreting the results by providing patient ID manually
hrm_data = md.transform_hrm(hrm[id])
ct_data = md.transform_ct(ct[id])
melt = md.hrm_to_melt(figure = False)
hrm_features = md.hrm_feature_extraction()
ct_values = md.ct_value()
result = md.predict_result()
report = md.report( output_fie_path=f"{id}.pdf",patient_id=id)

```

### Sample code Snippet for interpreting all individual result 
```
from PyMLRS.Rextractor import rex_reader
from PyMLRS.Mep_panel import Mep_diagnoser

# File extraction from the rex file
patient_id,hrm,ct = rex_reader("Your .rex file path")

# Interpreting the results
for id in patient_id:
    md = Mep_diagnoser()
    hrm_data = md.transform_hrm(hrm[id])
    ct_data = md.transform_ct(ct[id])
    melt = md.hrm_to_melt(figure = False)
    hrm_features = md.hrm_feature_extraction()
    ct_values = md.ct_value()
    result = md.predict_result()
    report = md.report( output_fie_path=f"{id}.pdf",patient_id=id)
```

# Getting Help

If you need to get in touch with the team, please contact through email address:<br>
[chandruganeshan24@gmail.com](mailto:chandruganeshan24@gmail.com)<br>
[vikramsekar2305@gmail.com](mailto:vikramsekar2305@gmail.com) 

# Developers
The developer of this Software are M.Sc Data Analytics Students in Department of Computer Application at [Bharathiar University](https://b-u.ac.in/23/department-computer-applications)
<table style='width:40%'>
  <tbody>
    <tr>
      <td align='center' valign='top'><a href="https://github.com/chandru-g24"> <img src="https://avatars.githubusercontent.com/u/111188572?s=400&u=befb7d97d2b8419a715a22b09d92f825bdc33906&v=4" width = '60px;' alt='Chandru G'/> <br /> <sub><b><a href="https://www.linkedin.com/in/chandru-g24/"> Chandru Ganeshan</a></b></sub></a><br /></td>
      <td align='center' valign='top'><a href="https://github.com/Vikram2305"> <img src="https://avatars.githubusercontent.com/u/124907782?s=400&u=a5d9c4ca9f08e5bb5e88bc4d049d5e80703d1c89&v=4" width = '60px;' alt='Vikram S'/> <br /> <sub><b><a href="https://www.linkedin.com/in/vikram-sekar/"> Vikram Sekar</a></b></sub></a><br /></td>
    </tr>
  </tbody>
  
</table>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/PyPCR/PyMLRS",
    "name": "PyMLRS",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "High Resolution Melt, Amplification Curve, Cycle threshold, PCR, rt-PCR, Meningoencephalitis, MEP, Pathogens, Bharathiar University",
    "author": "Chandru, Vikram",
    "author_email": "mlrs.project2024@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/bf/2d/9d0eee1be0df28e4e2e14d26924456bae97af804e8694230fced467cbfb6/pymlrs-0.0.4.tar.gz",
    "platform": null,
    "description": "<div align='center'>\r\n    <img src=\"https://github.com/PyPCR/PyMLRS/blob/main/PyMLRS.png?raw=true\", alt=\"PyMLR\u00a0Logo\">\r\n</div>\r\n\r\n<div align=\"center\">\r\n    <br>\r\n        <a href=\"\" width=\"250px\" height=\"250px\" alt=\"pyHRM\"></a>\r\n      <br>\r\n    <h1>PyMLRS</h1>\r\n    <h2><b>A Python library for processing and interpreting DNA High-Resolution Melt and Amplification Curves for the Meningoencephalitis Panel</b></h2>\r\n        <h4>\r\n        <a href=\"#installing-with-pip\">Installation</a>\r\n        \u2022\r\n        <a href=\"#Features\">Features</a>\r\n        \u2022\r\n        <a href=\"#Documentation\">Documentation</a>\r\n        \u2022\r\n        <a href=\"#getting-help\">Help</a>\r\n    </h4>\r\n</div>\r\n\r\n# PyMLRS\r\n<p align=\"justify\">\r\nPyMLRS primarily focuses on feature extraction and interpreting results from parsed data. here the first step is to parses files into the .rex format, extracting essential information such as HRM (High Resolution Melting) data, cycle threshold (CT) values, and sample details. It facilitates feature extraction from HRM data by converting it into melt curves, and for parsed CT data, it identifies take-off points crucial for determining the severity of affected pathogens. PyMLRS integrates these features to interpret results and generate comprehensive reports for respective identifiers.<span>\r\n</p>\r\n\r\n\r\n## Installing with PIP\r\n\r\n```\r\npython -m pip install PyMLRS\r\n```\r\nor\r\n```\r\npip3 install PyMLRS\r\n```\r\n\r\n<h1> Classifiers </h1>\r\n\r\n<table>\r\n  <tr>\r\n    <td nowrap><strong>Development Status</strong></td><td href = \"https://pypi.org/search/?c=Development+Status+%3A%3A+5+-+Production%2FStable\"><i >5 - Production/Stable </i></td>\r\n  </tr>\r\n  <tr>\r\n    <td nowrap><strong>Intened Audience</strong></td><td><i>Healthcare</i></td>\r\n  </tr>\r\n  <tr>\r\n    <td nowrap><strong>License</strong></td><td><i>OSI Approved :: MIT License </i></td>\r\n  </tr>\r\n  <tr>\r\n    <td nowrap><strong>Operating System</strong></td><td><i>Microsoft :: Windows :: Windows 10 </i></td>\r\n  </tr>\r\n  <tr>\r\n    <td nowrap><strong>Programming Language</strong></td><td><i>Python 3</i></td>\r\n  </tr>\r\n</table>\r\n\r\n## Features\r\n<ol>\r\n  <li>Rextractor\r\n    <ol>\r\n      <li>Extract the data from Rotor Gene Experiment(.rex) files.\r\n        <ol>\r\n          <li>High Resolution Melt (HRM)</li>\r\n          <li>Amplification Curve - Cycle Time (CT)</li>\r\n        </ol>\r\n      </li>\r\n      <li>Processing Data\r\n        <ol>\r\n          <li>Filter Only MEP Pathogens</li>\r\n          <li>Separate by patients</li>\r\n        </ol>\r\n      </li>\r\n    </ol>\r\n  </li>\r\n  <li>MEP panel\r\n    <ol>\r\n      <li>Feature Extraction\r\n        <ol>\r\n          <li>Target \u2013 Pathogen Name</li>\r\n          <li>Temperature (Peak of the Melt Curve)</li>\r\n          <li>Width</li>\r\n          <li>Prominence</li>\r\n          <li>Take of Point</li>\r\n          <li>Take down Point</li>\r\n          <li>Area Under the curve</li>\r\n        </ol>\r\n      </li>\r\n      <li>Interactive Visulization.\r\n        <ol>\r\n          <li>High Resolution Melt</li>\r\n          <li>Melt Curve</li>\r\n          <li>Amplification Curve</li>\r\n        </ol>\r\n      </li>\r\n      <li>Result\r\n        <ol>\r\n          <li>Interpreting the results of the pathogens</li>\r\n          <li>Generate report for test Results</li>\r\n        </ol>\r\n      </li>\r\n    </ol>\r\n  </li>\r\n</ol>\r\n\r\n\r\n<h1> Input Data format </h1>\r\n<p align=\"justify\">\r\nThe input file for the library is the run file from the Rotor-Gene machine, which is in the format of a Rotor-Gene Experiment (.rex) file, and we can directly provide the .rex file without any preprocessing.</p>\r\n\r\n## Documentation\r\n<html>\r\n<body>\r\n    <h2>Importing Library</h2>\r\n    <pre><code>from PyMLRS.Rextractor import rex_reader\r\nfrom PyMLRS.Mep_panel import Mep_diagnoser</code></pre>\r\n    <h2>PyMLRS.Rextractor.rex_reader()</h2>\r\n    <pre><code>PyMLRS.Rextractor.rex_reader(path = None)</code></pre>\r\n    <h4>Parameters:</h4>\r\n    <p class=\"param\"><b>path :</b> <i>Rotor Gene Experiment file path (.rex)</i></p>\r\n    <h4>Returns:</h4>\r\n    <p class=\"param\"><b>A dictionary containing various patient ID for each separate patients:</b> <i>class 'dict_keys'</i></p>\r\n    <p class=\"param\"><b>A dictionary containing various dataframes (HRM) for respective patient ID's:</b> <i>class 'dict_keys'</i></p>\r\n    <p class=\"param\"><b>A dictionary containing various dataframes (CT) for respective patient ID's:</b> <i>class 'dict_keys'</i></p>\r\n</body>\r\n</html>\r\n\r\n<br>\r\n\r\n### Example\r\n```\r\nfrom PyMLRS.Rextractor import rex_reader\r\nPatient_ids,raw_hrm,raw_ct = rex_reader(\"your .rex file path\")\r\n```\r\n## PyMLRS.Mep_panel.Mep_diagnoser \r\n```\r\nmd = Mep_diagnoser()\r\n\r\nhrm_data = md.transform_hrm(dataframe: Any,figure: bool = False)\r\nct_data = md.transform_ct(dataframe: Any,figure: bool = False)\r\nmelt = md.hrm_to_melt(figure: bool = False)\r\nhrm_features = md.hrm_feature_extraction()\r\nct_values = md.ct_value()\r\nmd.Tm_threshold()\r\nresult = md.predict_result()\r\nreport = md.report( output_fie_path: Any,patient_id: Any)\r\n```\r\n\r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n<meta charset=\"UTF-8\">\r\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n</head>\r\n<body>\r\n<h2>Function Documentation</h2>\r\n\r\n<h2><code>transform_hrm</code></h2>\r\n\r\n<p><strong>Parameters:</strong></p>\r\n<ul>\r\n  <li><code>dataframe</code>: HRM data obtained from <code>rex_reader()</code>.</li>\r\n  <li><code>figure</code> (optional): Boolean flag indicating whether to generate an HRM graph.</li>\r\n</ul>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>Processed HRM data.</li>\r\n  <li>If <code>figure</code> is <code>True</code>, an HRM graph is also returned.</li>\r\n</ul>\r\n\r\n<h2><code>transform_ct</code></h2>\r\n\r\n<p><strong>Parameters:</strong></p>\r\n<ul>\r\n  <li><code>dataframe</code>: CT data acquired from <code>rex_reader()</code>.</li>\r\n  <li><code>figure</code> (optional): Boolean flag to specify if a CT graph should be produced.</li>\r\n</ul>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>Processed CT data.</li>\r\n  <li>If <code>figure</code> is <code>True</code>, a CT graph is included in the output.</li>\r\n</ul>\r\n\r\n<h2><code>hrm_to_melt</code></h2>\r\n\r\n<p><strong>Parameters:</strong></p>\r\n<ul>\r\n  <li><code>figure</code> (optional): Boolean flag for generating a melt graph.</li>\r\n</ul>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>Melted data.</li>\r\n  <li>If <code>figure</code> is <code>True</code>, a melt graph is also provided.</li>\r\n</ul>\r\n\r\n<h2><code>hrm_feature_extraction</code></h2>\r\n\r\n<p><strong>No Parameters Needed</strong></p>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>HRM features extracted from the data.</li>\r\n</ul>\r\n\r\n<h2><code>ct_value</code></h2>\r\n\r\n<p><strong>No Parameters Needed</strong></p>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>CT values derived from the data.</li>\r\n</ul>\r\n\r\n<h2><code>predict_result</code></h2>\r\n\r\n<p><strong>No Parameters Needed</strong></p>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>Predicted result based on the processed data.</li>\r\n</ul>\r\n\r\n<h2><code>report</code></h2>\r\n\r\n<p><strong>Parameters:</strong></p>\r\n<ul>\r\n  <li><code>output_file_path</code>: Path to save the generated report.</li>\r\n  <li><code>patient_id</code>: Identifier for the patient.</li>\r\n</ul>\r\n\r\n<p><strong>Returns:</strong></p>\r\n<ul>\r\n  <li>Generated report based on the analysis.</li>\r\n</ul>\r\n\r\n</body>\r\n</html>\r\n\r\n\r\n### Sample code Snippet for interpreting individual result \r\n```\r\nfrom PyMLRS.Rextractor import rex_reader\r\nfrom PyMLRS.Mep_panel import Mep_diagnoser\r\n\r\n# File extraction from the rex file\r\npatient_id,hrm,ct = rex_reader(\"Your .rex file path\")\r\nprint(patient_id)\r\n```\r\n\r\n```\r\n# Create Object\r\nmd = Mep_diagnoser()\r\n\r\n# Interpreting the results by providing patient ID manually\r\nhrm_data = md.transform_hrm(hrm[id])\r\nct_data = md.transform_ct(ct[id])\r\nmelt = md.hrm_to_melt(figure = False)\r\nhrm_features = md.hrm_feature_extraction()\r\nct_values = md.ct_value()\r\nresult = md.predict_result()\r\nreport = md.report( output_fie_path=f\"{id}.pdf\",patient_id=id)\r\n\r\n```\r\n\r\n### Sample code Snippet for interpreting all individual result \r\n```\r\nfrom PyMLRS.Rextractor import rex_reader\r\nfrom PyMLRS.Mep_panel import Mep_diagnoser\r\n\r\n# File extraction from the rex file\r\npatient_id,hrm,ct = rex_reader(\"Your .rex file path\")\r\n\r\n# Interpreting the results\r\nfor id in patient_id:\r\n    md = Mep_diagnoser()\r\n    hrm_data = md.transform_hrm(hrm[id])\r\n    ct_data = md.transform_ct(ct[id])\r\n    melt = md.hrm_to_melt(figure = False)\r\n    hrm_features = md.hrm_feature_extraction()\r\n    ct_values = md.ct_value()\r\n    result = md.predict_result()\r\n    report = md.report( output_fie_path=f\"{id}.pdf\",patient_id=id)\r\n```\r\n\r\n# Getting Help\r\n\r\nIf you need to get in touch with the team, please contact through email address:<br>\r\n[chandruganeshan24@gmail.com](mailto:chandruganeshan24@gmail.com)<br>\r\n[vikramsekar2305@gmail.com](mailto:vikramsekar2305@gmail.com) \r\n\r\n# Developers\r\nThe developer of this Software are M.Sc Data Analytics Students in Department of Computer Application at [Bharathiar University](https://b-u.ac.in/23/department-computer-applications)\r\n<table style='width:40%'>\r\n  <tbody>\r\n    <tr>\r\n      <td align='center' valign='top'><a href=\"https://github.com/chandru-g24\"> <img src=\"https://avatars.githubusercontent.com/u/111188572?s=400&u=befb7d97d2b8419a715a22b09d92f825bdc33906&v=4\" width = '60px;' alt='Chandru G'/> <br /> <sub><b><a href=\"https://www.linkedin.com/in/chandru-g24/\"> Chandru Ganeshan</a></b></sub></a><br /></td>\r\n      <td align='center' valign='top'><a href=\"https://github.com/Vikram2305\"> <img src=\"https://avatars.githubusercontent.com/u/124907782?s=400&u=a5d9c4ca9f08e5bb5e88bc4d049d5e80703d1c89&v=4\" width = '60px;' alt='Vikram S'/> <br /> <sub><b><a href=\"https://www.linkedin.com/in/vikram-sekar/\"> Vikram Sekar</a></b></sub></a><br /></td>\r\n    </tr>\r\n  </tbody>\r\n  \r\n</table>\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A library for processing and interpreting DNA high-resolution melt and amplification curves for the meningoencephalitis panel.",
    "version": "0.0.4",
    "project_urls": {
        "Homepage": "https://github.com/PyPCR/PyMLRS"
    },
    "split_keywords": [
        "high resolution melt",
        " amplification curve",
        " cycle threshold",
        " pcr",
        " rt-pcr",
        " meningoencephalitis",
        " mep",
        " pathogens",
        " bharathiar university"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d28cca6a1ff9401cf7bed83f6574ab18bb1eed4d7cbd88b0cf6e768d9e6a1536",
                "md5": "e7ce82a31218fc3a3945eb5c2ca417d9",
                "sha256": "56cc3f1a6cf25951f50b274fe5f24c11a4150e1830691357d02eb1205e454b56"
            },
            "downloads": -1,
            "filename": "PyMLRS-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e7ce82a31218fc3a3945eb5c2ca417d9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 656471,
            "upload_time": "2024-04-27T06:52:45",
            "upload_time_iso_8601": "2024-04-27T06:52:45.330113Z",
            "url": "https://files.pythonhosted.org/packages/d2/8c/ca6a1ff9401cf7bed83f6574ab18bb1eed4d7cbd88b0cf6e768d9e6a1536/PyMLRS-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf2d9d0eee1be0df28e4e2e14d26924456bae97af804e8694230fced467cbfb6",
                "md5": "bbc78316f308f4b6273fc70174c515dd",
                "sha256": "aac517e7a4080570c93241885c09cd8ab8ea363acaf721641a502cce9c3b3694"
            },
            "downloads": -1,
            "filename": "pymlrs-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "bbc78316f308f4b6273fc70174c515dd",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 632353,
            "upload_time": "2024-04-27T06:53:01",
            "upload_time_iso_8601": "2024-04-27T06:53:01.907795Z",
            "url": "https://files.pythonhosted.org/packages/bf/2d/9d0eee1be0df28e4e2e14d26924456bae97af804e8694230fced467cbfb6/pymlrs-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-27 06:53:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PyPCR",
    "github_project": "PyMLRS",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pymlrs"
}
        
Elapsed time: 0.24580s