Skip to main content

Represent genomic annotations in Python. Equivalent to Bioconductors [GRanges](https://bioconductor.org/packages/release/bioc/html/GenomicRanges.html)

Project description

GenomicRanges

Container class to represent genomic locations and support genomic analysis in Python similar to Bioconductor's GenomicRanges.

Install

Package is published to PyPI

pip install genomicranges

Usage

The package provide several ways to represent genomic annotations and intervals.

Initialize a GenomicRanges object

From UCSC or GTF file

Methods are available to easily access UCSC genomes or load a genome annotation from GTF

import genomicranges

gr = genomicranges.fromGTF(<PATH TO GTF>)
# OR 
gr = genomicranges.fromUCSC(genome="hg19")

Pandas DataFrame

A common representation in Python is a pandas DataFrame for all tabular datasets. One can convert this into GenomicRanges. Intervals are inclusive on both ends.

Note: The DataFrame must contain columns seqnames, starts and ends to represent genomic coordinates.

import genomicranges
import pandas as pd

df = pd.DataFrame(
    {
        "seqnames": ["chr1", "chr2", "chr1", "chr3", "chr2"],
        "starts": [101, 102, 103, 104, 109],
        "ends": [112, 103, 128, 134, 111],
        "strand": ["*", "-", "*", "+", "-"],
        "score": range(0, 5),
        "GC": [random() for _ in range(5)],
    }
)

gr = genomicranges.fromPandas(df)

Interval Operations

Currently supports most commonly used interval based operations.

subject = genomicranges.fromUCSC(genome="hg38")

query = genomicranges.fromPandas(
    pd.DataFrame(
        {
            "seqnames": ["chr1", "chr2", "chr3"],
            "starts": [100, 115, 119],
            "ends": [103, 116, 120],
        }
    )
)

hits = subject.nearest(query)
print(hits)

Checkout the documentation for more usecases.

Note

This project has been set up using PyScaffold 4.1.1. For details and usage information on PyScaffold see https://pyscaffold.org/.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

GenomicRanges-0.2.10.tar.gz (46.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

GenomicRanges-0.2.10-py3-none-any.whl (26.6 kB view details)

Uploaded Python 3

File details

Details for the file GenomicRanges-0.2.10.tar.gz.

File metadata

  • Download URL: GenomicRanges-0.2.10.tar.gz
  • Upload date:
  • Size: 46.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for GenomicRanges-0.2.10.tar.gz
Algorithm Hash digest
SHA256 db2598a452e039bb6d501c70582970b0b4ccd8d7f3620c586ce8725cecd180d7
MD5 606bb6925e0a10d844124fd913dcae91
BLAKE2b-256 1edf8692c62c8037e973822d4d310377e25ff5f6e12aae8deebeb3fae8ae45e0

See more details on using hashes here.

File details

Details for the file GenomicRanges-0.2.10-py3-none-any.whl.

File metadata

  • Download URL: GenomicRanges-0.2.10-py3-none-any.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for GenomicRanges-0.2.10-py3-none-any.whl
Algorithm Hash digest
SHA256 61ae8598fcd7323a21f54fe9a51d68f1704a27d6c9ab74541e47fa49c7cb1fa6
MD5 9dc41efd65277db9e96a08ecd4d1639f
BLAKE2b-256 ff9a55954d2fadea42a90b085bdcd05e68cda6812ba5bded8b98b2cadfdc3522

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page