ThesisHNSC


NameThesisHNSC JSON
Version 0.0.6 PyPI version JSON
download
home_page
Summarytest file
upload_time2023-01-30 10:05:47
maintainer
docs_urlNone
authorAkanksha
requires_python
license
keywords python head and neck cancer diagnosis single cell genomics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# HNSCPredict :- A Tool for Identification of HNSCC from Single Cell Genome using Deep Learning

A computational approach tool to predict Head and Neck Cancer affected patients from their single cell RNA seq data.


## Introduction

Head and neck cancer, which encompasses a range of malignancies affecting the respiratory tract and upper digestive tract and also the seventh most common cancer in the world. 

This tool aims to use Artifical Neural Network (Deep Learning) model to classify Normal Control(NC) patients and Head and Neck Cancer (HNSCC) patients from
their single cell RNA seq data. The tool takes 10x single cell genomics data as input and predicts whether the patient is diseased or healthy with the help of highly trained model.

An excellent feature selection method called mRMR (Minimum Redundancy Maximum Relevance) was used to find out top 100 features which act as promising biomarkers
in classification and prediction of Normal and Diseased patients.

Please read/cite the content about the AlzScPredict for complete information including algorithm behind the approach.
## Installation

Install my-project with pip

```bash
  pip install HNSCPred
```
    
You if previously installed please update the python package to the latest version using the command below

```bash
  pip3 install --upgrade HNSCPred
```
## Usage/Examples

After installation of the HNSCPred package in your python enviornment. Import the library using the below code.


```python
import HNSCPred
```
The HNSCPred comes with 1 inbuilt modules . 

- Predict
Please import all 3 modules in your python enviornment using the code below.

```python
from HNSCPred import preprocessing
from HNSCPred import Model_Selection
from HNSCPred import PredictionModule

```

After importing all the important pre requisites. You can follow the demo below for your case.


```python
import pandas as pd
df = pd.read_csv("Your file path here")

#Takes single cell data in form of dataframe with cells in rows and features in columns. Returns preprocessed dataframe.
processed = preprocessing.preprocess_data(df)

# Load the model with the code below. This takes no arguments.
my_model = Model_Selection.load_model()

# Prediction:- Execute the code below to get the output. It takes 2 arguments i.e 
# preloaded model and the processed dataframe with 35 features.

PredictionModule.predict_patient(my_model,processed)

```

## Used By

This project is used by the following companies:

- Company 1
- Company 2


## Authors

- Aman Srivastava.
- Akanksha Jarwal. 
- [Prof. G.P.S. Raghava](https://www.github.com/octokatherine)

## Acknowledgements

 - [Awesome Readme Templates](https://awesomeopensource.com/project/elangosundar/awesome-README-templates)
 - [Awesome README](https://github.com/matiassingers/awesome-readme)
 - [How to write a Good readme](https://bulldogjob.com/news/449-how-to-write-a-good-readme-for-your-github-project)




            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ThesisHNSC",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,Head and neck cancer,Diagnosis,Single cell,Genomics",
    "author": "Akanksha",
    "author_email": "<akanksha20331@iiitd.ac.in>",
    "download_url": "https://files.pythonhosted.org/packages/af/0e/e99de895ff83c6f9553fdb1e08e3beb8fb8ee90f235bf0760c2ade2d456f/ThesisHNSC-0.0.6.tar.gz",
    "platform": null,
    "description": "\n# HNSCPredict :- A Tool for Identification of HNSCC from Single Cell Genome using Deep Learning\n\nA computational approach tool to predict Head and Neck Cancer affected patients from their single cell RNA seq data.\n\n\n## Introduction\n\nHead and neck cancer, which encompasses a range of malignancies affecting the respiratory tract and upper digestive tract and also the seventh most common cancer in the world. \n\nThis tool aims to use Artifical Neural Network (Deep Learning) model to classify Normal Control(NC) patients and Head and Neck Cancer (HNSCC) patients from\ntheir single cell RNA seq data. The tool takes 10x single cell genomics data as input and predicts whether the patient is diseased or healthy with the help of highly trained model.\n\nAn excellent feature selection method called mRMR (Minimum Redundancy Maximum Relevance) was used to find out top 100 features which act as promising biomarkers\nin classification and prediction of Normal and Diseased patients.\n\nPlease read/cite the content about the AlzScPredict for complete information including algorithm behind the approach.\n## Installation\n\nInstall my-project with pip\n\n```bash\n  pip install HNSCPred\n```\n    \nYou if previously installed please update the python package to the latest version using the command below\n\n```bash\n  pip3 install --upgrade HNSCPred\n```\n## Usage/Examples\n\nAfter installation of the HNSCPred package in your python enviornment. Import the library using the below code.\n\n\n```python\nimport HNSCPred\n```\nThe HNSCPred comes with 1 inbuilt modules . \n\n- Predict\nPlease import all 3 modules in your python enviornment using the code below.\n\n```python\nfrom HNSCPred import preprocessing\nfrom HNSCPred import Model_Selection\nfrom HNSCPred import PredictionModule\n\n```\n\nAfter importing all the important pre requisites. You can follow the demo below for your case.\n\n\n```python\nimport pandas as pd\ndf = pd.read_csv(\"Your file path here\")\n\n#Takes single cell data in form of dataframe with cells in rows and features in columns. Returns preprocessed dataframe.\nprocessed = preprocessing.preprocess_data(df)\n\n# Load the model with the code below. This takes no arguments.\nmy_model = Model_Selection.load_model()\n\n# Prediction:- Execute the code below to get the output. It takes 2 arguments i.e \n# preloaded model and the processed dataframe with 35 features.\n\nPredictionModule.predict_patient(my_model,processed)\n\n```\n\n## Used By\n\nThis project is used by the following companies:\n\n- Company 1\n- Company 2\n\n\n## Authors\n\n- Aman Srivastava.\n- Akanksha Jarwal. \n- [Prof. G.P.S. Raghava](https://www.github.com/octokatherine)\n\n## Acknowledgements\n\n - [Awesome Readme Templates](https://awesomeopensource.com/project/elangosundar/awesome-README-templates)\n - [Awesome README](https://github.com/matiassingers/awesome-readme)\n - [How to write a Good readme](https://bulldogjob.com/news/449-how-to-write-a-good-readme-for-your-github-project)\n\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "test file",
    "version": "0.0.6",
    "split_keywords": [
        "python",
        "head and neck cancer",
        "diagnosis",
        "single cell",
        "genomics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "818811c93ef18e6a08342433f2a716153a2aa8f396704dd3be14501fbf9ce0e9",
                "md5": "1d0be9c8066108eb10f49a46edc648ca",
                "sha256": "68ad906501476eedb43a736a4e0b2360597ddedd9ab3a9eaf456afc2a0371caa"
            },
            "downloads": -1,
            "filename": "ThesisHNSC-0.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1d0be9c8066108eb10f49a46edc648ca",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 424436,
            "upload_time": "2023-01-30T10:05:30",
            "upload_time_iso_8601": "2023-01-30T10:05:30.621848Z",
            "url": "https://files.pythonhosted.org/packages/81/88/11c93ef18e6a08342433f2a716153a2aa8f396704dd3be14501fbf9ce0e9/ThesisHNSC-0.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af0ee99de895ff83c6f9553fdb1e08e3beb8fb8ee90f235bf0760c2ade2d456f",
                "md5": "857a56f59ab14c7b4130106d59e0ac7b",
                "sha256": "31b5834cdd2b5aecb57a02323165d08cbe88589f300e9ca8b344bd2ef2ee5bf6"
            },
            "downloads": -1,
            "filename": "ThesisHNSC-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "857a56f59ab14c7b4130106d59e0ac7b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 425964,
            "upload_time": "2023-01-30T10:05:47",
            "upload_time_iso_8601": "2023-01-30T10:05:47.234681Z",
            "url": "https://files.pythonhosted.org/packages/af/0e/e99de895ff83c6f9553fdb1e08e3beb8fb8ee90f235bf0760c2ade2d456f/ThesisHNSC-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-30 10:05:47",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "thesishnsc"
}
        
Elapsed time: 0.04940s