Skip to main content

annotate variant

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)         โ”‚
โ”‚    --padding      -p  TEXT  Padding base to use for motif. 'N' by default โ”‚
โ”‚                             but can be set to any single letter           โ”‚
โ”‚    --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.98.tar.gz (17.5 kB view details)

Uploaded Source

Built Distributions

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

variant-0.0.98-cp313-cp313-musllinux_1_2_x86_64.whl (26.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

variant-0.0.98-cp313-cp313-musllinux_1_2_i686.whl (26.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

variant-0.0.98-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

variant-0.0.98-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

variant-0.0.98-cp313-cp313-macosx_11_0_arm64.whl (20.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

variant-0.0.98-cp312-cp312-musllinux_1_2_x86_64.whl (26.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

variant-0.0.98-cp312-cp312-musllinux_1_2_i686.whl (26.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

variant-0.0.98-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

variant-0.0.98-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

variant-0.0.98-cp312-cp312-macosx_11_0_arm64.whl (20.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

variant-0.0.98-cp311-cp311-musllinux_1_2_x86_64.whl (25.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

variant-0.0.98-cp311-cp311-musllinux_1_2_i686.whl (25.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

variant-0.0.98-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (25.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

variant-0.0.98-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (25.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

variant-0.0.98-cp311-cp311-macosx_11_0_arm64.whl (20.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: variant-0.0.98.tar.gz
  • Upload date:
  • Size: 17.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for variant-0.0.98.tar.gz
Algorithm Hash digest
SHA256 d7e05eab370eb0f824cdec11df39cc7221c0b209b4f3935cc21d018dbd299667
MD5 1542ca1c3817ae3c6508e68a9a0de75e
BLAKE2b-256 939abf4f59c3ef0289980698d24d17b87a612867eacba10a7e238d5c229e89ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98.tar.gz:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1edabe30bfbd89d639efa9b62c2c50d7c109e665a1b8077c2a122b90ece3fb72
MD5 34344eeb1ade390d26f0478ded99c913
BLAKE2b-256 aa539408d871e1849fe91c76a3e6f0027fba38d61d120f811e3b52f32eb05d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3757438af7664490bab32d756bca4719106fcf4048c01046e4b319630d430383
MD5 fc29cd49faa3976de7608f07574902fb
BLAKE2b-256 687b8859782bbd2ecc4f54ba799c83ef1cf0e097210f28019bbf69a34e9f94bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8050b3085d91407bb2234a4df4a19ea5546cad980c9387651ed5b79553e6d29e
MD5 1c6e6ef2826540ecb4e6adccbb09d5de
BLAKE2b-256 d6a70440afe8024a4e2d8656ee7604455b6bf33555aaf951878bbf9490442478

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eca2f3475039343471456d1d10b738b7830ac20cc55577a1ba9279be923f515e
MD5 aea77be50d67eec0b4d7cc0271c05a66
BLAKE2b-256 59bafc3a0c93bc4dfa0ea34bd02041d28846f16ba263562d218547fe5d487474

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0551a420d02238c6b2f5c82c94a45aa71f0584c8959a586137c9b6e9cb2573e6
MD5 2c3f78a50567f501ad2fa6d332127bb2
BLAKE2b-256 b20850345e249a66948a45bae7b0b3d3e8b307afb52c6a650e4299ce0906ea53

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d67fad8132756fbb0d8ffc15969e83d6489bb67b5492b943616b62b05debc493
MD5 deed9e68bf416c93a46aea215ef69fd9
BLAKE2b-256 bfe225ee40cb0d0488e31cebac4c19174ccbe8d9afd236f9089ce8f5bfdf2d72

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e4071a573b76eb7360626c82d77cfaf6f81065afda0c46a68ad0d35f5f5c667
MD5 eb2cdc028760e49f9e9dc85312cc9a08
BLAKE2b-256 a4bdfeb486920243cb7b6f61d4d86f53ae0706fcbe98f81db12ef8b22b2c86a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6cbefee7caeb140f9369a4971b86dccd023f4490e967f2033708f916722d361
MD5 51d190fcd60105a0e9f23c1fdcdd27db
BLAKE2b-256 0a969c742cee93d61df0cc0673121ca1f40c04a0d28c8d17490b7c29306ba2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d3e3d451c4608f39e70947d348f5c50c540e51ff24223d69abbf557a2bc7dd1
MD5 812c747a36f92331a1ef31432d14ae33
BLAKE2b-256 c76b2916afd65cb37117a6350b45353989d8885dabb3989ce96220c7871cd8e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45f14618f58f16d54c2d5e9c7e35e2c04709cc38dffe1673b67dba0bebd27203
MD5 cb3ff63ae028ac4e1bcb64fe7eeb1bb6
BLAKE2b-256 5234587ec5a1d4fa302b3dd51a341565a4195a61d241a40471240df0c98208da

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8fb8384db090aec749c59bff3c5f1a86d8c417386b051b6dbd808eeb16a95ee
MD5 f9cbc740bfcc672676aa24a3ffc3423e
BLAKE2b-256 8eaea6e99a88302ba1d3b56110aeee8ed8acea2336d49235e9d49cb7023b9369

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a8edd9d29beebcf240a76d898f8622af7b93d89ced818098a4ce810251c940d
MD5 68386018e9223f3a0f8cb346f31d342a
BLAKE2b-256 aaab8cadc93132c51f44e68130f4e6d5643a72de99e28afee7e97058970f517c

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e268d7736b339d2cea142ea55b54d6f8e09d13217493afeea3c28df0237ac91
MD5 43b8bdedacaa3f6f19f5d881a8b230c0
BLAKE2b-256 8902ac9012057d2048de82155fc3633e2fc0efc9395a7d2b4bdba450c9117875

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9875255c8cedde7f74f7782e2cd006595d3a58c01755d34212bcae35be0c17b
MD5 7c1334c9ba050fab5eb7d1698ba75cbd
BLAKE2b-256 c8264c269b25f97201786e38a7ed56bb1faa98b50d0025a8ea025169f6263948

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file variant-0.0.98-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for variant-0.0.98-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26c065988a5f9a6fab78f07c1675f93a9a4b4bc90d15140192055569bc6daa5c
MD5 5ed1576f3de893efaa6f37a3a881097d
BLAKE2b-256 961b620ebc695ce622490be6fd473b491a9093e55cd9bf4b969dec42fb8bcafb

See more details on using hashes here.

Provenance

The following attestation bundles were made for variant-0.0.98-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yaml on y9c/variant

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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