| Name | hmmCDR JSON |
| Version |
0.2.0
JSON |
| download |
| home_page | https://github.com/jmenendez98/hmmCDR |
| Summary | Find CDR locations using bedmethyl file and CenSat annotations. (REQUIRES BEDTOOLS INSTALLED) |
| upload_time | 2024-10-19 00:06:07 |
| maintainer | None |
| docs_url | None |
| author | Julian Menendez |
| requires_python | >=3.7 |
| license | MIT |
| keywords |
|
| VCS |
 |
| bugtrack_url |
|
| requirements |
No requirements were recorded.
|
| Travis-CI |
No Travis.
|
| coveralls test coverage |
No coveralls.
|
# `hmmCDR`
[](https://anaconda.org/jmmenend/hmmcdr)
[](https://hub.docker.com/r/jmmenend/hmmcdr)
[](https://pypi.org/project/hmmCDR/0.1.4/)
`hmmCDR` is a set of python scripts to predict CDR regions of active alpha satellite arrays. It takes a bedMethyl from `modkit` and a set CenSat Annotations in order to make predictions.
## Installation:
`hmmCDR` can be installed through `conda`. With `bioconda` and `conda-forge` channels enabled.
```bash
conda install jmmenend::hmmcdr -c bioconda -c conda-forge
```
`hmmCDR` can be run with `docker`.
```bash
docker run -v .:/data jmmenend/hmmcdr:0.1.4 # YOUR FLAGS #
```
`hmmCDR` can be install through `pypi`. Although this requires a separate installation of `bedtools`.
```bash
pip install hmmCDR
```
NOTE: If you chose it install with only `pip` you need to install `bedtools` as well.
## Description:
<img src="imgs/CDR_HMM_diagram.png" alt="HMM Diagram" width="600">
This software is designed to find Centromere Dip Regions (CDRs), subCDRs, and their boundaries within the centromeric active alpha satellite (alpha-sat) array. CDRs are a uniquely hypo-methylated region within the typically hyper-methylated alpha-sat array. CDRs are tightly associated with the histone mark Centromere Protein A (CENP-A). This makes establishing accurate boundaries to CDRs and subCDRs essential to studying their relationship with CENPA. This method combines previous methods of identifying CDRs, through a sliding-window approach, with a Hidden Markov Model(HMM) that uses these sliding window estimates as a prior. The advantage to this two-fold approach is seen at the edges of the CDRs. A sliding window algorithm has a hard time drawing precise boundaries and identifying transitions in/out of the CDRs, whereas the HMM greatly improves identification of these regions.
<img src="imgs/hmmCDR_example.png" alt="Example Improvements" width="600">
\* in this image the lighter blue represents a CDR transition.
This python package takes in a bed file of 5mC methylation in aggregate, preferably from [modkit](https://github.com/nanoporetech/modkit), and an [Centromere-Satellite Annotation](https://github.com/kmiga/alphaAnnotation)(CenSat) file. The aggregate methylation file is used to determine where the 5mC depleted regions are, and the CenSat Annotation is used to subset the methylation files to only the alpha-sat array. This improves both the speed and accuracy of the CDR identification, as outside this region the trend of hypermethylation is not as strong. This package also processes each chromosome separately and in parallel to further improve speed.
## Inputs:
### 1. Modkit Pileup bedMethyl File:
| column | name | description | type |
|--------|-----------------------|--------------------------------------------------------------------------------|-------|
| 1 | chrom | name of chromosome/contig | str |
| 2 | start position | 0-based start position | int |
| 3 | end position | 0-based exclusive end position | int |
| 4 | modified base code | single letter code for modified base | str |
| 5 | score | Equal to N<sub>valid_cov</sub>. | int |
| 6 | strand | '+' for positive strand '-' for negative strand, '.' when strands are combined | str |
| 7 | start position | included for compatibility | int |
| 8 | end position | included for compatibility | int |
| 9 | color | included for compatibility, always 255,0,0 | str |
| 10 | N<sub>valid_cov</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 11 | fraction modified | N<sub>mod</sub> / N<sub>valid_cov</sub> | float |
| 12 | N<sub>mod</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 13 | N<sub>canonical</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 14 | N<sub>other_mod</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 15 | N<sub>delete</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 16 | N<sub>fail</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 17 | N<sub>diff</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
| 18 | N<sub>nocall</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |
### 2. CenSat Annotation bed
| column | name | description | type |
|--------|-----------------------|--------------------------------------------------------------------------------|-------|
| 1 | chrom | name of chromosome/contig | str |
| 2 | start position | 0-based start position | int |
| 3 | end position | 0-based exclusive end position | int |
| 4 | satellite type/name | type of satellite and for some specific name in parentheses | str |
| 5 | score | Not sure what if it is used for anytime. | int |
| 6 | strand | '+' for positive strand '-' for negative strand, '.' if uncertain | str |
| 7 | start position | included for compatibility | int |
| 8 | end position | included for compatibility | int |
| 9 | color | color of the annotation in browser | str |
### Usage:
```
usage: hmmCDR [-h] [-m MOD_CODE] [-s SAT_TYPE] [--bedgraph] [--min_valid_cov MIN_VALID_COV] [--window_size WINDOW_SIZE] [--prior_percentile PRIOR_PERCENTILE]
[--raw_thresholds] [--n_iter N_ITER] [--remove_transitions] [-w W] [-x X] [-y Y] [-z Z] [--merge_distance MERGE_DISTANCE] [--min_size MIN_SIZE]
[--enrichment] [--main_color MAIN_COLOR] [--transition_color TRANSITION_COLOR] [--save_intermediates] [--output_label OUTPUT_LABEL]
bedMethyl_path cenSat_path output_path
Process input files with optional parameters.
positional arguments:
bedMethyl_path Path to the bedMethyl file
cenSat_path Path to the CenSat BED file
output_path Output Path for the output files
options:
-h, --help show this help message and exit
-m MOD_CODE, --mod_code MOD_CODE
Modification code to filter bedMethyl file (default: "m")
-s SAT_TYPE, --sat_type SAT_TYPE
Comma-separated list of satellite types/names to filter CenSat bed file. (default: "H1L")
--bedgraph Flag indicating if the input is a bedgraph. (default: False)
--min_valid_cov MIN_VALID_COV
Minimum Valid Coverage to consider a methylation site. (default: 10)
--window_size WINDOW_SIZE
Window size to calculate prior regions. (default: 510)
--prior_percentile PRIOR_PERCENTILE
Percentile for finding priorCDR regions. (default: 10)
--raw_thresholds Use values for flags w,x,y,z as raw threshold cutoffs for each emission category. (default: True)
--n_iter N_ITER Maximum number of iteration allowed for the HMM. (default: 1)
--remove_transitions Do not report transitions in final hmmCDR output file. (default: False)
-w W Threshold of non-zero methylation percentile to be classified as very low (default: 0)
-x X Threshold of non-zero methylation percentile to be classified as low (default: 25)
-y Y Threshold of non-zero methylation percentile to be classified as medium (default: 50)
-z Z Threshold of non-zero methylation percentile to be classified as high (default: 75)
--merge_distance MERGE_DISTANCE
Distance to merge adjacently labelled regions. (default: 1021)
--min_size MIN_SIZE Minimum size for regions. (default: 3000)
--enrichment Enrichment flag. Pass in if you are looking for methylation enriched regions. (default: False)
--main_color MAIN_COLOR
Color to dictate main regions. (default: 50,50,255)
--transition_color TRANSITION_COLOR
Color to dictate transition regions. (default: 100,150,200)
--save_intermediates Set to true if you would like to save intermediates(filtered beds+window means). (default: False)
--output_label OUTPUT_LABEL
Label to use for name column of hmmCDR BED file. Needs to match priorCDR label. (default: "CDR")
```
## License
This project is licensed under the MIT License.
Raw data
{
"_id": null,
"home_page": "https://github.com/jmenendez98/hmmCDR",
"name": "hmmCDR",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": null,
"author": "Julian Menendez",
"author_email": "jmmenend@ucsc.edu",
"download_url": "https://files.pythonhosted.org/packages/f2/cc/af8c10941c081719f91770fcd14c9767bdfda1a899684dac7b22e3cf0840/hmmcdr-0.2.0.tar.gz",
"platform": null,
"description": "\n\n# `hmmCDR`\n\n[](https://anaconda.org/jmmenend/hmmcdr)\n[](https://hub.docker.com/r/jmmenend/hmmcdr)\n[](https://pypi.org/project/hmmCDR/0.1.4/)\n\n`hmmCDR` is a set of python scripts to predict CDR regions of active alpha satellite arrays. It takes a bedMethyl from `modkit` and a set CenSat Annotations in order to make predictions.\n\n## Installation: \n\n`hmmCDR` can be installed through `conda`. With `bioconda` and `conda-forge` channels enabled.\n```bash\nconda install jmmenend::hmmcdr -c bioconda -c conda-forge\n```\n\n`hmmCDR` can be run with `docker`.\n```bash\ndocker run -v .:/data jmmenend/hmmcdr:0.1.4 # YOUR FLAGS #\n```\n\n`hmmCDR` can be install through `pypi`. Although this requires a separate installation of `bedtools`.\n```bash\npip install hmmCDR\n```\n\nNOTE: If you chose it install with only `pip` you need to install `bedtools` as well.\n\n## Description:\n\n<img src=\"imgs/CDR_HMM_diagram.png\" alt=\"HMM Diagram\" width=\"600\">\n\nThis software is designed to find Centromere Dip Regions (CDRs), subCDRs, and their boundaries within the centromeric active alpha satellite (alpha-sat) array. CDRs are a uniquely hypo-methylated region within the typically hyper-methylated alpha-sat array. CDRs are tightly associated with the histone mark Centromere Protein A (CENP-A). This makes establishing accurate boundaries to CDRs and subCDRs essential to studying their relationship with CENPA. This method combines previous methods of identifying CDRs, through a sliding-window approach, with a Hidden Markov Model(HMM) that uses these sliding window estimates as a prior. The advantage to this two-fold approach is seen at the edges of the CDRs. A sliding window algorithm has a hard time drawing precise boundaries and identifying transitions in/out of the CDRs, whereas the HMM greatly improves identification of these regions. \n\n\n\n<img src=\"imgs/hmmCDR_example.png\" alt=\"Example Improvements\" width=\"600\">\n\n\\* in this image the lighter blue represents a CDR transition. \n\nThis python package takes in a bed file of 5mC methylation in aggregate, preferably from [modkit](https://github.com/nanoporetech/modkit), and an [Centromere-Satellite Annotation](https://github.com/kmiga/alphaAnnotation)(CenSat) file. The aggregate methylation file is used to determine where the 5mC depleted regions are, and the CenSat Annotation is used to subset the methylation files to only the alpha-sat array. This improves both the speed and accuracy of the CDR identification, as outside this region the trend of hypermethylation is not as strong. This package also processes each chromosome separately and in parallel to further improve speed.\n\n\n## Inputs:\n### 1. Modkit Pileup bedMethyl File: \n\n| column | name | description | type |\n|--------|-----------------------|--------------------------------------------------------------------------------|-------|\n| 1 | chrom | name of chromosome/contig | str |\n| 2 | start position | 0-based start position | int |\n| 3 | end position | 0-based exclusive end position | int |\n| 4 | modified base code | single letter code for modified base | str |\n| 5 | score | Equal to N<sub>valid_cov</sub>. | int |\n| 6 | strand | '+' for positive strand '-' for negative strand, '.' when strands are combined | str |\n| 7 | start position | included for compatibility | int |\n| 8 | end position | included for compatibility | int |\n| 9 | color | included for compatibility, always 255,0,0 | str |\n| 10 | N<sub>valid_cov</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 11 | fraction modified | N<sub>mod</sub> / N<sub>valid_cov</sub> | float |\n| 12 | N<sub>mod</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 13 | N<sub>canonical</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 14 | N<sub>other_mod</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 15 | N<sub>delete</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 16 | N<sub>fail</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 17 | N<sub>diff</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n| 18 | N<sub>nocall</sub> | Refer to [modkit github](https://github.com/nanoporetech/modkit) | int |\n\n### 2. CenSat Annotation bed\n\n| column | name | description | type |\n|--------|-----------------------|--------------------------------------------------------------------------------|-------|\n| 1 | chrom | name of chromosome/contig | str |\n| 2 | start position | 0-based start position | int |\n| 3 | end position | 0-based exclusive end position | int |\n| 4 | satellite type/name | type of satellite and for some specific name in parentheses | str |\n| 5 | score | Not sure what if it is used for anytime. | int |\n| 6 | strand | '+' for positive strand '-' for negative strand, '.' if uncertain | str |\n| 7 | start position | included for compatibility | int |\n| 8 | end position | included for compatibility | int |\n| 9 | color | color of the annotation in browser | str |\n\n\n### Usage:\n```\nusage: hmmCDR [-h] [-m MOD_CODE] [-s SAT_TYPE] [--bedgraph] [--min_valid_cov MIN_VALID_COV] [--window_size WINDOW_SIZE] [--prior_percentile PRIOR_PERCENTILE]\n [--raw_thresholds] [--n_iter N_ITER] [--remove_transitions] [-w W] [-x X] [-y Y] [-z Z] [--merge_distance MERGE_DISTANCE] [--min_size MIN_SIZE]\n [--enrichment] [--main_color MAIN_COLOR] [--transition_color TRANSITION_COLOR] [--save_intermediates] [--output_label OUTPUT_LABEL]\n bedMethyl_path cenSat_path output_path\n\nProcess input files with optional parameters.\n\npositional arguments:\n bedMethyl_path Path to the bedMethyl file\n cenSat_path Path to the CenSat BED file\n output_path Output Path for the output files\n\noptions:\n -h, --help show this help message and exit\n -m MOD_CODE, --mod_code MOD_CODE\n Modification code to filter bedMethyl file (default: \"m\")\n -s SAT_TYPE, --sat_type SAT_TYPE\n Comma-separated list of satellite types/names to filter CenSat bed file. (default: \"H1L\")\n --bedgraph Flag indicating if the input is a bedgraph. (default: False)\n --min_valid_cov MIN_VALID_COV\n Minimum Valid Coverage to consider a methylation site. (default: 10)\n --window_size WINDOW_SIZE\n Window size to calculate prior regions. (default: 510)\n --prior_percentile PRIOR_PERCENTILE\n Percentile for finding priorCDR regions. (default: 10)\n --raw_thresholds Use values for flags w,x,y,z as raw threshold cutoffs for each emission category. (default: True)\n --n_iter N_ITER Maximum number of iteration allowed for the HMM. (default: 1)\n --remove_transitions Do not report transitions in final hmmCDR output file. (default: False)\n -w W Threshold of non-zero methylation percentile to be classified as very low (default: 0)\n -x X Threshold of non-zero methylation percentile to be classified as low (default: 25)\n -y Y Threshold of non-zero methylation percentile to be classified as medium (default: 50)\n -z Z Threshold of non-zero methylation percentile to be classified as high (default: 75)\n --merge_distance MERGE_DISTANCE\n Distance to merge adjacently labelled regions. (default: 1021)\n --min_size MIN_SIZE Minimum size for regions. (default: 3000)\n --enrichment Enrichment flag. Pass in if you are looking for methylation enriched regions. (default: False)\n --main_color MAIN_COLOR\n Color to dictate main regions. (default: 50,50,255)\n --transition_color TRANSITION_COLOR\n Color to dictate transition regions. (default: 100,150,200)\n --save_intermediates Set to true if you would like to save intermediates(filtered beds+window means). (default: False)\n --output_label OUTPUT_LABEL\n Label to use for name column of hmmCDR BED file. Needs to match priorCDR label. (default: \"CDR\")\n```\n\n## License\n\nThis project is licensed under the MIT License.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Find CDR locations using bedmethyl file and CenSat annotations. (REQUIRES BEDTOOLS INSTALLED)",
"version": "0.2.0",
"project_urls": {
"GitHub": "https://github.com/jmenendez98/hmmCDR",
"Homepage": "https://github.com/jmenendez98/hmmCDR",
"Lab Website": "https://migalab.com/"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "afdf6da323c1b70166bac9c3c99005f3a90434b380445cbce34a605a92951f3a",
"md5": "9f5644b136780635b3ec8f6a1784a8b6",
"sha256": "e6c57d8eb0bc7e5eb2b659283bb7202c6d73c55b8e29f35aef5e3ff1ddc8a610"
},
"downloads": -1,
"filename": "hmmCDR-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9f5644b136780635b3ec8f6a1784a8b6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 17380,
"upload_time": "2024-10-19T00:06:05",
"upload_time_iso_8601": "2024-10-19T00:06:05.772247Z",
"url": "https://files.pythonhosted.org/packages/af/df/6da323c1b70166bac9c3c99005f3a90434b380445cbce34a605a92951f3a/hmmCDR-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2ccaf8c10941c081719f91770fcd14c9767bdfda1a899684dac7b22e3cf0840",
"md5": "2a25898f2a6bef853e933d25bb9a502e",
"sha256": "714588cd016d3be7d4457a801904d5054329c7bb514ace2814eae7668759bb08"
},
"downloads": -1,
"filename": "hmmcdr-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "2a25898f2a6bef853e933d25bb9a502e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 17912,
"upload_time": "2024-10-19T00:06:07",
"upload_time_iso_8601": "2024-10-19T00:06:07.337963Z",
"url": "https://files.pythonhosted.org/packages/f2/cc/af8c10941c081719f91770fcd14c9767bdfda1a899684dac7b22e3cf0840/hmmcdr-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-19 00:06:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jmenendez98",
"github_project": "hmmCDR",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [],
"lcname": "hmmcdr"
}