Skip to main content

No project description provided

Project description

Python pakcage for genomic variant analysis

Pypi Releases Downloads

How to install?

pip install variant

How to use?

๐Ÿงฌ variant motif subcommand can fetch motif sequence around given site.

 Usage: variant motif [OPTIONS]

 Fetch genomic motif.

โ•ญโ”€ Options โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚    --input        -i  TEXT  Input position file.                          โ”‚
โ”‚    --output       -o  TEXT  Output annotation file.                       โ”‚
โ”‚ *  --fasta        -f  TEXT  reference fasta file. [required]              โ”‚
โ”‚    --npad         -n  TEXT  Number of padding base to call motif. If you  โ”‚
โ”‚                             want to set different left and right pads,    โ”‚
โ”‚                             use comma to separate them. (eg. 2,3)         โ”‚
โ”‚    --with-header  -H        With header line in input file.               โ”‚
โ”‚    --columns      -c  TEXT  Sets columns for site info.                   โ”‚
โ”‚                             (Chrom,Pos,Strand)                            โ”‚
โ”‚                             [default: 1,2,3]                              โ”‚
โ”‚    --to-upper     -u        Convert motif to upper case.                  โ”‚
โ”‚    --wrap-site    -w        Wrap motif site.                              โ”‚
โ”‚    --help         -h        Show this message and exit.                   โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

demo:

I would like to get the 2 bases before the given sites, and 3 bases after the given sites, meanwhile, wrap the give sites with bracket. Moreover, the strand information should be taken into account.

use -n 2,3 -w

๐Ÿงซ variant effect subcommand can infer the effect of a mutation

 Usage: variant effect [OPTIONS]

 Annotation genomic variant effect.

โ•ญโ”€ Options โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ --input                 -i  TEXT     Input position file.                 โ”‚
โ”‚ --output                -o  TEXT     Output annotation file               โ”‚
โ”‚ --reference             -r  TEXT     reference species                    โ”‚
โ”‚ --reference-gtf             TEXT     Customized reference gtf file.       โ”‚
โ”‚ --reference-transcript      TEXT     Customized reference transcript      โ”‚
โ”‚                                      fasta file.                          โ”‚
โ”‚ --reference-protein         TEXT     Customized reference protein fasta   โ”‚
โ”‚                                      file.                                โ”‚
โ”‚ --release               -e  INTEGER  ensembl release                      โ”‚
โ”‚ --strandness            -s           Use strand infomation or not?        โ”‚
โ”‚ --pU-mode               -u           Make rRNA, tRNA, snoRNA into top     โ”‚
โ”‚                                      priority.                            โ”‚
โ”‚ --npad                  -n  INTEGER  Number of padding base to call       โ”‚
โ”‚                                      motif.                               โ”‚
โ”‚ --all-effects           -a           Output all effects.                  โ”‚
โ”‚ --with-header           -H           With header line in input file.      โ”‚
โ”‚ --columns               -c  TEXT     Sets columns for site info.          โ”‚
โ”‚                                      (Chrom,Pos,Strand,Ref,Alt)           โ”‚
โ”‚                                      [default: 1,2,3,4,5]                 โ”‚
โ”‚ --help                  -h           Show this message and exit.          โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

demo:

Store the following table in file (sites.tsv).

Chrom Position Strand Ref Alt
chr1 230703034 - C T
chr12 69353439 + A T
chr14 23645352 + G T
chr2 215361150 - A T
chr2 84906537 + C T
chr22 39319077 - T A
chr22 39319095 - T A
chr22 39319098 - T A

Run command:

variant-effect -i sites.tsv -H -r human -e 108 -t RNA -H -c 1,2,3
  • -i specify the input file
  • -H means the file is with header line, and the first row will be skipped;
  • -r use the specific genome, default is human
  • -e specify the Ensembl release version
  • -c means only use some of the columns in the input file. default will use the first 5 columns.

You will have this output

Chrom Position Strand Ref Alt mut_type gene_type gene_name gene_pos transcript_name transcript_pos transcript_motif coding_pos codon_ref aa_pos aa_ref distance2splice
chr1 230703034 - C T ThreePrimeUTR protein_coding ENSG00000135744(AGT) 42543 ENST00000680041(AGT-208) 1753 TGTGTCACCCCCAGTCTCCCA None None None None 295
chr12 69353439 + A T ThreePrimeUTR protein_coding ENSG00000090382(LYZ) 5059 ENST00000261267(LYZ-201) 695 TAGAACTAATACTGGTGAAAA None None None None 286
chr14 23645352 + G T ThreePrimeUTR protein_coding ENSG00000100867(DHRS2) 15238 ENST00000344777(DHRS2-202) 1391 CTGCCATTCTGCCAGACTAGC None None None None 210
chr2 215361150 - A T ThreePrimeUTR protein_coding ENSG00000115414(FN1) 74924 ENST00000323926(FN1-201) 8012 GGCCCGCAATACTGTAGGAAC None None None None 476
chr2 84906537 + C T ThreePrimeUTR protein_coding ENSG00000034510(TMSB10) 882 ENST00000233143(TMSB10-201) 327 CCTGGGCACTCCGCGCCGATG None None None None 148
chr22 39319077 - T A Intronic protein_coding ENSG00000100316(RPL3) 1313 ENST00000216146(RPL3-201) None None None None None None None
chr22 39319095 - T A Intronic protein_coding ENSG00000100316(RPL3) 1295 ENST00000216146(RPL3-201) None None None None None None None
chr22 39319098 - T A Intronic protein_coding ENSG00000100316(RPL3) 1292 ENST00000216146(RPL3-201) None None None None None None None

๐Ÿงซ variant coordinate subcommand can mapping chrom name and positions between different reference coordinate

 Usage: variant coordinate [OPTIONS]

 Fetch genomic motif.

โ•ญโ”€ Options โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ
โ”‚ --input              -i  TEXT  Input position file.                         โ”‚
โ”‚ --output             -o  TEXT  Output annotation file.                      โ”‚
โ”‚ --reference-mapping  -m  TEXT  Mapping file for chrom name, first column is โ”‚
โ”‚                                chrom in the input, second column is chrom   โ”‚
โ”‚                                in the reference db (sep by tab)             โ”‚
โ”‚ --buildin-mapping    -M  TEXT  Build-in mapping for chrom name: U2E (UCSC   โ”‚
โ”‚                                to Ensembl), E2U (Ensembl to UCSC)           โ”‚
โ”‚ --with-header        -H        With header line in input file.              โ”‚
โ”‚ --columns            -c  TEXT  Sets columns for site info. (Chrom)          โ”‚
โ”‚                                [default: 1]                                 โ”‚
โ”‚ --help               -h        Show this message and exit.                  โ”‚
โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ

โณโณโณ more functions will be supported in the future

TODO:

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

variant-0.0.78.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

variant-0.0.78-py3-none-any.whl (14.8 kB view details)

Uploaded Python 3

File details

Details for the file variant-0.0.78.tar.gz.

File metadata

  • Download URL: variant-0.0.78.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/5.15.133.1-microsoft-standard-WSL2

File hashes

Hashes for variant-0.0.78.tar.gz
Algorithm Hash digest
SHA256 e2efa4e6baf7ce77a924a19c171e9f88994d6c1a5b82e87fad689e01be64cb57
MD5 8b7309208980ff1ee7e8cc48a4b8063e
BLAKE2b-256 774d7fbe0d3ea2604a8999943977a5a5a3f147d90ec2d6a9286847a069801c93

See more details on using hashes here.

File details

Details for the file variant-0.0.78-py3-none-any.whl.

File metadata

  • Download URL: variant-0.0.78-py3-none-any.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.11.6 Linux/5.15.133.1-microsoft-standard-WSL2

File hashes

Hashes for variant-0.0.78-py3-none-any.whl
Algorithm Hash digest
SHA256 2b02ae51b31f07a06be850ebd10a7f4f1532128a35548c68a0fc288db057febd
MD5 134a0e4b45e6bb8a916f1e644b6a8c95
BLAKE2b-256 c44a72fca70e5f3a0ca07f7a32db2cb3155b7c8640b215f4dcf2eaba7e35ff6a

See more details on using hashes here.

Supported by

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