pyPCR


NamepyPCR JSON
Version 0.0.3 PyPI version JSON
download
home_pagehttps://github.com/PyPCR/PyPCR
SummaryA library for processing and interpreting DNA high-resolution melt and amplification curves for the meningoencephalitis panel.
upload_time2024-04-10 11:39:23
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseMIT
keywords high resolution melt amplification curve cycle threshold pcr rt-pcr meningoencephalitis mep pathogens
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
    <br>
        <a href="" width="250px" height="250px" alt="pyHRM"></a>
      <br>
    <h1>PyPCR</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>

# PyPCR
<p align="justify">
PyPCR 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. PyPCR integrates these features to interpret results and generate comprehensive reports for respective identifiers.<span>
</p>


<h1> Installing with PIP </h1>

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

<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>

<h1> Features </h1>
<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>

<html>
<body>
    <h1>Documentation</h1>
    <h2>Importing Library</h2>
    <pre><code>from PyPCR.Rextractor import rex_reader
from PyPCR.Mep_panel import Mep_diagnoser</code></pre>
    <h2>PyPCR.Rextractor.rex_reader()</h2>
    <pre><code>PyPCR.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 PyPCR.Rextractor import rex_reader
Patient_ids,raw_hrm,raw_ct = rex_reader("your .rex file path")
```
## PyPCR.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 PyPCR.Rextractor import rex_reader
from PyPCR.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()
md.Tm_threshold()
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 PyPCR.Rextractor import rex_reader
from PyPCR.Mep_panel import Mep_diagnoser

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

# Create Object
md = Mep_diagnoser()

# Interpreting the results
for id in patient_id:
    hrm_data = md.read_hrm(hrm[id])
    ct_data = md.read_ct(ct[id])
    melt = md.hrm_to_melt(figure: 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=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/PyPCR",
    "name": "pyPCR",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "High Resolution Melt, Amplification Curve, Cycle threshold, PCR, rt-PCR, Meningoencephalitis, MEP, Pathogens",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/1f/2c/262742b545439305e27aab439b66ddf6000381ff7ed4ef7242a685a4e291/pyPCR-0.0.3.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\r\n    <br>\r\n        <a href=\"\" width=\"250px\" height=\"250px\" alt=\"pyHRM\"></a>\r\n      <br>\r\n    <h1>PyPCR</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# PyPCR\r\n<p align=\"justify\">\r\nPyPCR 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. PyPCR integrates these features to interpret results and generate comprehensive reports for respective identifiers.<span>\r\n</p>\r\n\r\n\r\n<h1> Installing with PIP </h1>\r\n\r\n```\r\npython -m pip install PyPCR\r\n```\r\nor\r\n```\r\npip3 install PyPCR\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<h1> Features </h1>\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<html>\r\n<body>\r\n    <h1>Documentation</h1>\r\n    <h2>Importing Library</h2>\r\n    <pre><code>from PyPCR.Rextractor import rex_reader\r\nfrom PyPCR.Mep_panel import Mep_diagnoser</code></pre>\r\n    <h2>PyPCR.Rextractor.rex_reader()</h2>\r\n    <pre><code>PyPCR.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 PyPCR.Rextractor import rex_reader\r\nPatient_ids,raw_hrm,raw_ct = rex_reader(\"your .rex file path\")\r\n```\r\n## PyPCR.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 PyPCR.Rextractor import rex_reader\r\nfrom PyPCR.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\nmd.Tm_threshold()\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 PyPCR.Rextractor import rex_reader\r\nfrom PyPCR.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# Create Object\r\nmd = Mep_diagnoser()\r\n\r\n# Interpreting the results\r\nfor id in patient_id:\r\n    hrm_data = md.read_hrm(hrm[id])\r\n    ct_data = md.read_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    md.Tm_threshold()\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\r\n\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.3",
    "project_urls": {
        "Homepage": "https://github.com/PyPCR/PyPCR"
    },
    "split_keywords": [
        "high resolution melt",
        " amplification curve",
        " cycle threshold",
        " pcr",
        " rt-pcr",
        " meningoencephalitis",
        " mep",
        " pathogens"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a7364a182a7b36d2ccb7cd8dfc6bb2a2845620a6e325e262966f1a78241bf9a",
                "md5": "2103cb171fd4e2a3ad75c611d8e7a98d",
                "sha256": "9ec67c65e312abe67e6c0595fadfb5a43d31ad1c6921a50ad81304f329e98f25"
            },
            "downloads": -1,
            "filename": "pyPCR-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2103cb171fd4e2a3ad75c611d8e7a98d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 656316,
            "upload_time": "2024-04-10T11:39:21",
            "upload_time_iso_8601": "2024-04-10T11:39:21.389993Z",
            "url": "https://files.pythonhosted.org/packages/3a/73/64a182a7b36d2ccb7cd8dfc6bb2a2845620a6e325e262966f1a78241bf9a/pyPCR-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f2c262742b545439305e27aab439b66ddf6000381ff7ed4ef7242a685a4e291",
                "md5": "d7b9e40b326f4aabd1eada9d2774113c",
                "sha256": "8680531f1cdddf2f502443ce01f91a697572f09420c636cfb07982f60b6f736b"
            },
            "downloads": -1,
            "filename": "pyPCR-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d7b9e40b326f4aabd1eada9d2774113c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 631317,
            "upload_time": "2024-04-10T11:39:23",
            "upload_time_iso_8601": "2024-04-10T11:39:23.610644Z",
            "url": "https://files.pythonhosted.org/packages/1f/2c/262742b545439305e27aab439b66ddf6000381ff7ed4ef7242a685a4e291/pyPCR-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-10 11:39:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "PyPCR",
    "github_project": "PyPCR",
    "github_not_found": true,
    "lcname": "pypcr"
}
        
Elapsed time: 0.22894s