bedms


Namebedms JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/databio/bedmess/
SummaryBEDMess attribute standardizer for metadata attribute standardization
upload_time2024-09-16 19:27:07
maintainerNone
docs_urlNone
authorSaanika Tambe
requires_pythonNone
licenseBSD2
keywords project metadata bioinformatics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BEDMS

BEDMS (BED Metadata Standardizer) is a tool used to standardize genomics/epigenomics metadata based on a schema chosen by the user ( eg. ENCODE, FAIRTRACKS, BEDBASE).


## Installation

To install `bedms` use this command: 
```
pip install bedms
```
or install the latest version from the GitHub repository:
```
pip install git+https://github.com/databio/bedms.git
```

## Usage

```python
from bedms import AttrStandardizer

model = AttrStandardizer("ENCODE")
results = model.standardize(pep="geo/gse228634:default")

assert results
```


To see the available schemas, you can run:
```
from bedms.constants import AVAILABLE_SCHEMAS
print(AVAILABLE_SCHEMAS)

# >> ['ENCODE', 'FAIRTRACKS', 'BEDBASE'] 

```
AVAILABLE_SCHEMAS is a list of available schemas that you can use to standardize your metadata.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/databio/bedmess/",
    "name": "bedms",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "project, metadata, bioinformatics",
    "author": "Saanika Tambe",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/b0/e2/e9683d4b55842d5414f78dcedfbdac5999de12a01022f0437beadbc0b291/bedms-0.1.0.tar.gz",
    "platform": null,
    "description": "# BEDMS\n\nBEDMS (BED Metadata Standardizer) is a tool used to standardize genomics/epigenomics metadata based on a schema chosen by the user ( eg. ENCODE, FAIRTRACKS, BEDBASE).\n\n\n## Installation\n\nTo install `bedms` use this command: \n```\npip install bedms\n```\nor install the latest version from the GitHub repository:\n```\npip install git+https://github.com/databio/bedms.git\n```\n\n## Usage\n\n```python\nfrom bedms import AttrStandardizer\n\nmodel = AttrStandardizer(\"ENCODE\")\nresults = model.standardize(pep=\"geo/gse228634:default\")\n\nassert results\n```\n\n\nTo see the available schemas, you can run:\n```\nfrom bedms.constants import AVAILABLE_SCHEMAS\nprint(AVAILABLE_SCHEMAS)\n\n# >> ['ENCODE', 'FAIRTRACKS', 'BEDBASE'] \n\n```\nAVAILABLE_SCHEMAS is a list of available schemas that you can use to standardize your metadata.\n",
    "bugtrack_url": null,
    "license": "BSD2",
    "summary": "BEDMess attribute standardizer for metadata attribute standardization",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/databio/bedmess/"
    },
    "split_keywords": [
        "project",
        " metadata",
        " bioinformatics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22aa42f299645a4ad061896a8b6366fe813264e5a0716aed27b669c23a87d02d",
                "md5": "c46221f9faa77c19df6a4cce550b35a4",
                "sha256": "5ec41b0a877dabbf73912b05fe24dbafcba215e0c74a785c0520ec9017d4212c"
            },
            "downloads": -1,
            "filename": "bedms-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c46221f9faa77c19df6a4cce550b35a4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 9750,
            "upload_time": "2024-09-16T19:26:33",
            "upload_time_iso_8601": "2024-09-16T19:26:33.410061Z",
            "url": "https://files.pythonhosted.org/packages/22/aa/42f299645a4ad061896a8b6366fe813264e5a0716aed27b669c23a87d02d/bedms-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b0e2e9683d4b55842d5414f78dcedfbdac5999de12a01022f0437beadbc0b291",
                "md5": "a35e77fb7a87a59cd5cd9fdb6990788f",
                "sha256": "92842e2f5f37a49ab7ceb0ef35f77caecc6001c839c6a7764ab8d9dc781a03b0"
            },
            "downloads": -1,
            "filename": "bedms-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a35e77fb7a87a59cd5cd9fdb6990788f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 9037,
            "upload_time": "2024-09-16T19:27:07",
            "upload_time_iso_8601": "2024-09-16T19:27:07.173686Z",
            "url": "https://files.pythonhosted.org/packages/b0/e2/e9683d4b55842d5414f78dcedfbdac5999de12a01022f0437beadbc0b291/bedms-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-16 19:27:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "databio",
    "github_project": "bedmess",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bedms"
}
        
Elapsed time: 2.21160s