rrmscorer


Namerrmscorer JSON
Version 1.0.9 PyPI version JSON
download
home_pagehttps://bio2byte.be/rrmscorer
SummaryRRM-RNA score predictor
upload_time2023-10-10 11:00:35
maintainerJoel Roca-Martinez, Wim Vranken
docs_urlNone
authorJoel Roca-Martinez, Wim Vranken
requires_python>=3.9
licenseOSI Approved :: GNU General Public License v3 (GPLv3)
keywords proteins rrm rna predictor sequence bio2byte
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # RRMScorer documentation
RRMScorer allows the user to easily predict how likely a single RRM is to bind ssRNA using a carefully generated alignment for the RRM structures in complex with RNA, from which we analyzed the interaction patterns and derived the scores (Please address to the publication for more details on the method REF)

**🔗 RRMScorer is also available online now! (https://bio2byte.be/rrmscorer/)**

### Pip package installation
> pip is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes.

**🔗 Related link:** [Pip official documentation](https://pypi.org/).

```console
$ pip install rrmscorer
```

**⚠️ Important note:**
Apple silicon users may need to install the package in a Rosetta environment, using conda for isntance, bacause some packages are not available for the silicon architecture yet.
```console
$ CONDA_SUBDIR=osx-64 conda create -n rosetta_environment
```


## Features
RRMScorer has several features to either calculate the binding score for a specific RRM and RNA sequences, for a set of RRM sequences in a fasta file, or to explore which are the best RNA binders according to our scoring method.

### i) UniProt id (with 1 or more RRMs) vs RNA
To use this feature the user needs to input:

1. `-u` The UniProt identifier 
2. `-r` The RNA sequence to score
3. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)
4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path
5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path
6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path
7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM


```console
$ python -m rrmscorer -u P19339 -r UAUAUUAGUAGUA -w 5 -j output/ -c output/ -p output/
```

### ii) Fasta file with RRM sequences vs RNA
To use this feature the user needs to input:

1. `-f` Fasta file with 1 or more RRM sequences. The sequences are aligned to the master alignment HMM.
1. `-r` The RNA sequence to test
1. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)
4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path
5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path
6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path
7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM

```console
$ python -m rrmscorer -f input_files/rrm_seq.fasta -r UAUAUUAGUAGUA -c output/
```


### iii) Fasta file / UniProt id to find top-scoring RNAs
To use this feature the user needs to input:

1. `-f` Fasta file or UniProt Id is as described in the previous cases.
1. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)
1. `-t` To find the top-scoring RNA for the specified RRM/s
4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path
5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path
6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path
7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM

```console
$ python -m rrmscorer -f input_files/rrm_seq.fasta -w 5 -top -j output/
```

## 📖 How to cite
If you use this package or data in this package, please cite:

| Predictor | Cite                                                                                                                                                         | Link                                      |
|-----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|
| RRMScorer | Roca-Martínez J, Dhondge H, Sattler M, Vranken WF. Deciphering the RRM-RNA recognition code: A computational analysis. PLoS Comput Biol. 2023 Jan 23;19(1)   | https://pubmed.ncbi.nlm.nih.gov/36689472/ |


            

Raw data

            {
    "_id": null,
    "home_page": "https://bio2byte.be/rrmscorer",
    "name": "rrmscorer",
    "maintainer": "Joel Roca-Martinez, Wim Vranken",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "joel.roca.martinez@vub.be, wim.vranken@vub.be",
    "keywords": "proteins RRM RNA predictor sequence bio2byte",
    "author": "Joel Roca-Martinez, Wim Vranken",
    "author_email": "joel.roca.martinez@vub.be, wim.vranken@vub.be",
    "download_url": "https://files.pythonhosted.org/packages/e2/1f/80df8e1ddffcb005b32d9b47b18a27daa2b29b92095158faf5631436dc3b/rrmscorer-1.0.9.tar.gz",
    "platform": null,
    "description": "# RRMScorer documentation\nRRMScorer allows the user to easily predict how likely a single RRM is to bind ssRNA using a carefully generated alignment for the RRM structures in complex with RNA, from which we analyzed the interaction patterns and derived the scores (Please address to the publication for more details on the method REF)\n\n**\ud83d\udd17 RRMScorer is also available online now! (https://bio2byte.be/rrmscorer/)**\n\n### Pip package installation\n> pip is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes.\n\n**\ud83d\udd17 Related link:** [Pip official documentation](https://pypi.org/).\n\n```console\n$ pip install rrmscorer\n```\n\n**\u26a0\ufe0f Important note:**\nApple silicon users may need to install the package in a Rosetta environment, using conda for isntance, bacause some packages are not available for the silicon architecture yet.\n```console\n$ CONDA_SUBDIR=osx-64 conda create -n rosetta_environment\n```\n\n\n## Features\nRRMScorer has several features to either calculate the binding score for a specific RRM and RNA sequences, for a set of RRM sequences in a fasta file, or to explore which are the best RNA binders according to our scoring method.\n\n### i) UniProt id (with 1 or more RRMs) vs RNA\nTo use this feature the user needs to input:\n\n1. `-u` The UniProt identifier \n2. `-r` The RNA sequence to score\n3. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)\n4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path\n5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path\n6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path\n7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM\n\n\n```console\n$ python -m rrmscorer -u P19339 -r UAUAUUAGUAGUA -w 5 -j output/ -c output/ -p output/\n```\n\n### ii) Fasta file with RRM sequences vs RNA\nTo use this feature the user needs to input:\n\n1. `-f` Fasta file with 1 or more RRM sequences. The sequences are aligned to the master alignment HMM.\n1. `-r` The RNA sequence to test\n1. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)\n4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path\n5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path\n6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path\n7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM\n\n```console\n$ python -m rrmscorer -f input_files/rrm_seq.fasta -r UAUAUUAGUAGUA -c output/\n```\n\n\n### iii) Fasta file / UniProt id to find top-scoring RNAs\nTo use this feature the user needs to input:\n\n1. `-f` Fasta file or UniProt Id is as described in the previous cases.\n1. `-w` [default=5] The window size to test (**Only 3 and 5 nucleotide windows are accepted**)\n1. `-t` To find the top-scoring RNA for the specified RRM/s\n4. `-j` [Optional] To store the results in a json file per RRM found in the declared directory path\n5. `-c` [Optional] To store the results in a csv file per RRM found in the declared directory path\n6. `-p` [Optional] To generate score plots for all the RNA possible windows per RRM found in the declared directory path\n7. `-a` [Optional] To generate a fasta file with each input sequence aligned to the HMM\n\n```console\n$ python -m rrmscorer -f input_files/rrm_seq.fasta -w 5 -top -j output/\n```\n\n## \ud83d\udcd6 How to cite\nIf you use this package or data in this package, please cite:\n\n| Predictor | Cite                                                                                                                                                         | Link                                      |\n|-----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------|\n| RRMScorer | Roca-Mart\u00ednez J, Dhondge H, Sattler M, Vranken WF. Deciphering the RRM-RNA recognition code: A computational analysis. PLoS Comput Biol. 2023 Jan 23;19(1)   | https://pubmed.ncbi.nlm.nih.gov/36689472/ |\n\n",
    "bugtrack_url": null,
    "license": "OSI Approved :: GNU General Public License v3 (GPLv3)",
    "summary": "RRM-RNA score predictor",
    "version": "1.0.9",
    "project_urls": {
        "Documentation": "https://bitbucket.org/bio2byte/rrmscorer/raw/master/readme.md",
        "Homepage": "https://bio2byte.be/rrmscorer",
        "Say Thanks!": "https://www.bio2byte.be/b2btools/feedback",
        "Source": "https://bitbucket.org/bio2byte/rrmscorer/"
    },
    "split_keywords": [
        "proteins",
        "rrm",
        "rna",
        "predictor",
        "sequence",
        "bio2byte"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e21f80df8e1ddffcb005b32d9b47b18a27daa2b29b92095158faf5631436dc3b",
                "md5": "87ae97dcb5639ad34b497810c5c04c4a",
                "sha256": "2058ec1af72ff6ed0d026a643d0358c3e06f7cdb25615bba66b05554df2d76fa"
            },
            "downloads": -1,
            "filename": "rrmscorer-1.0.9.tar.gz",
            "has_sig": false,
            "md5_digest": "87ae97dcb5639ad34b497810c5c04c4a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 193638,
            "upload_time": "2023-10-10T11:00:35",
            "upload_time_iso_8601": "2023-10-10T11:00:35.300287Z",
            "url": "https://files.pythonhosted.org/packages/e2/1f/80df8e1ddffcb005b32d9b47b18a27daa2b29b92095158faf5631436dc3b/rrmscorer-1.0.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-10 11:00:35",
    "github": false,
    "gitlab": false,
    "bitbucket": true,
    "codeberg": false,
    "bitbucket_user": "bio2byte",
    "bitbucket_project": "rrmscorer",
    "lcname": "rrmscorer"
}
        
Elapsed time: 0.12160s