GTF Parsing
Project description
gtfparse
Parsing tools for GTF (gene transfer format) files.
Example usage
Parsing all rows of a GTF file into a Pandas DataFrame
from gtfparse import read_gtf
# returns GTF with essential columns such as "feature", "seqname", "start", "end"
# alongside the names of any optional keys which appeared in the attribute column
df = read_gtf("gene_annotations.gtf")
# filter DataFrame to gene entries on chrY
df_genes = df[df["feature"] == "gene"]
df_genes_chrY = df_genes[df_genes["seqname"] == "Y"]
Getting gene FPKM values from a StringTie GTF file
from gtfparse import read_gtf
df = read_gtf(
"stringtie-output.gtf",
column_converters={"FPKM": float})
gene_fpkms = {
gene_name: fpkm
for (gene_name, fpkm, feature)
in zip(df["gene_name"], df["FPKM"], df["feature"])
if feature == "gene"
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gtfparse-1.1.1.tar.gz
(12.9 kB
view details)
File details
Details for the file gtfparse-1.1.1.tar.gz.
File metadata
- Download URL: gtfparse-1.1.1.tar.gz
- Upload date:
- Size: 12.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d17afb9881c8391ef73a90593afe34e71709e9f4683065726e64558100cdedc7
|
|
| MD5 |
fac8ad40902312e281e91d8dcb005aae
|
|
| BLAKE2b-256 |
06927c6155290f841f617b3e978339e08aa2c71324bde4d1bd742eaf7a164b28
|