Skip to main content

No project description provided

Project description

rust-gc-count

cargo build --release
target/release/gccount --input in.fa --output out.wig

Description

A tool for generating wiggle files of GC from DNA written in Rust.

Help

Calculate GC and write into a wiggle file

Usage: gccount [OPTIONS] --input <INPUT> --output <OUTPUT>

Options:
      --input <INPUT>                   FASTA formatted file (can be gziped) to calculate GC from
      --output <OUTPUT>                 Output wiggle file. One file will be produced
      --window <WINDOW>                 Window size to calculate GC over [default: 5]
      --omit-tail                       Remove any trailing sequence and do not calcualte GC. Default behaviour is to retain the leftover sequence. GC is calculated over the remaining sequence length
      --write-chrom-sizes               Write a chrom.sizes file into the current directory. Use --chrom-sizes-path to configure location
      --chrom-sizes-path <CHROM.SIZES>  Path of the chrom.sizes file. Defaults to chrom.sizes [default: chrom.sizes]
      --verbose                         Be verbose
  -h, --help                            Print help
  -V, --version                         Print version

Checksum calculator

target/release/checksumseq --input in.fa --output chrom.file

Another binary for calculating sequence lengths and checksums from a file. The resulting file is formted as tab separated with the following columns:

  1. Sequence ID as it appears in the FASTA file
  2. Sequence length
  3. Refget ga4gh identifier (SQ.sha512t24u)
  4. MD5 checksum hex encoded

The resulting file can be used as a chrom.sizes file too.

Command line

Iterates through a FASTA file calclating checksums and sequence length

Usage: checksumseq [OPTIONS]

Options:
      --input <INPUT>    FASTA formatted file to calculate checksums from (- mean STDIN). Reads gzipped FASTA if the filename ends with .gz (including bgzip files) [default: -]
      --output <OUTPUT>  Output file (- means STDOUT). Each line is tab separated reporting "ID Length sha512t24u md5" [default: -]
      --verbose          Be verbose
  -h, --help             Print help
  -V, --version          Print version

From within Python

Python bindings are available for the checksumseq calculation. The following code demonstrates how to use the bindings.

Install the bindings

maturin is used to build the bindings and install them into the current environment. Ensure you are using the Python environment you want to install the bindings into.

pip install maturin

Then navigate to the rust-gc-count/bindings directory and run the following command to install the bindings.

maturin build --release

Use the bindings

To use the bindings in Python, the following code demonstrates how to use the bindings.

from gc_count import checksum

results = checksum("path/to/seq/fasta")
for result in results:
    print(result.sha512)

Level of code quality

The code developed here has not been extensively tested but has been verified as producing correct and expected output.

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

gc_count-0.2.1.tar.gz (22.7 kB view details)

Uploaded Source

Built Distributions

gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp312-none-win_amd64.whl (225.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

gc_count-0.2.1-cp312-none-win32.whl (237.8 kB view details)

Uploaded CPython 3.12 Windows x86

gc_count-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (337.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

gc_count-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (345.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

gc_count-0.2.1-cp311-none-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

gc_count-0.2.1-cp311-none-win32.whl (238.2 kB view details)

Uploaded CPython 3.11 Windows x86

gc_count-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

gc_count-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

gc_count-0.2.1-cp310-none-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

gc_count-0.2.1-cp310-none-win32.whl (238.2 kB view details)

Uploaded CPython 3.10 Windows x86

gc_count-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

gc_count-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

gc_count-0.2.1-cp39-none-win_amd64.whl (225.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

gc_count-0.2.1-cp39-none-win32.whl (238.6 kB view details)

Uploaded CPython 3.9 Windows x86

gc_count-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp38-none-win_amd64.whl (225.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

gc_count-0.2.1-cp38-none-win32.whl (238.4 kB view details)

Uploaded CPython 3.8 Windows x86

gc_count-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

gc_count-0.2.1-cp37-none-win_amd64.whl (225.5 kB view details)

Uploaded CPython 3.7 Windows x86-64

gc_count-0.2.1-cp37-none-win32.whl (238.2 kB view details)

Uploaded CPython 3.7 Windows x86

gc_count-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

gc_count-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

gc_count-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

Details for the file gc_count-0.2.1.tar.gz.

File metadata

  • Download URL: gc_count-0.2.1.tar.gz
  • Upload date:
  • Size: 22.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1.tar.gz
Algorithm Hash digest
SHA256 112cc280374981fccd2268f387837c9b93f0610f7f8144500f485e8283610239
MD5 8681c99be1bcc68b0985cd2d26c1b843
BLAKE2b-256 e9d3e54e3e3b11e110c858e74efb5f6ebfb4ce9ec4c9c469028f185a03bc95ee

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17cb4ddc69d1181ac5bf47600db144c2efea5b27e0df8c894ed43864eea4ccc4
MD5 7982290dade6fe8e142b389e11bf55c4
BLAKE2b-256 7557b5483a3e36b70112c8f003ceee3bd9000273b9c618cbeae7832ed198b576

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e3e393a585352fe0ad101b530d2a3bf8d33b9865391ad5ff1c07ecc5cf4c340
MD5 3899f2b6178ef9caf5c1a53d0b88247f
BLAKE2b-256 a8a7c701e4b31d076a7f9bb2971e32b18d96bb44218cf8739518dfa590a8eb87

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4c346f8df737d1af260a2803fb5b00d12e9d2ebc4286c53acf2e575943a2e16
MD5 3716024334170a69c31a036c9fd6f12c
BLAKE2b-256 67b94a1398e64ebd8f0e0d492bb7662c536e6573d1e2c0ce368b87ca101d5b97

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c15ee70d1d5bce67551c914f6670ff3abd5f678f3f6cd3743c445e8a6188e65e
MD5 cc74b140ee69879a11779994a0719b30
BLAKE2b-256 e5cd6e065d7c821d1edfcaf7efbf3b5625049e976f3cc397a357fe2588c8ec81

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c2214d0ad7dfbe6c091b18691ad3f577c4a0e898741f21559de498bdb2290a6
MD5 13b89abc501b638149f4abd64ca91b12
BLAKE2b-256 809c1d95db67ef6184547be91dbbad68b737e440e176b1bb6f12740537f18a0c

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b55bf4adceda1f396317e1eb4eda828547f198568f51365912409dfb3ceccdf
MD5 27ffe22b619fb150a1ee06f9e6d5c9af
BLAKE2b-256 e27511cbf357dccc351b50ddf5e6e4d33885b14a7a090230397a7a6ae5d4c382

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aef06b2bd7da80041f6a248c9a3e0141f973e93654bff35ab61862ed87ef20e
MD5 613d97ff0575f6a6b430b03930772d70
BLAKE2b-256 0f2cd0aaa389958f28a2bf1c3701ca1d31c2688f7e406119f72b7cacb2352b92

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc99b89ea10aa55273bd7c2ace14cd499622003c547c6fa84e1614d891a57718
MD5 8c217fc15a47b6c7d399b244c4da7e09
BLAKE2b-256 ca6f653247e8f6672358c380f105b66a32aa0c25d2aafc5e110fadae4f56bc78

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ca4760466662f0e9313a92280f921beb9d1dbbf46f7787cf35aa956dfe287f1
MD5 50feb21ba7b00dd8e8efdf7bc7e19d09
BLAKE2b-256 1d4292b8e9416331f176f8fc7b8a2f13c1efc7996f1ccd2ead921f78468da0b6

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eda393cb02b89b6e27e82ac607c106092ed03b56408d856d19a631af56572c1f
MD5 836414f39baa95f7972f0350e8d6196d
BLAKE2b-256 d95e23539484e66352fb748c2cb30831cae8a309983546d48cc8a162315c54a3

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dc002f01bfd96714e660bb210cfc4afa1c2f241594ff2e8463bb7b5d7c6469e
MD5 b894f2e767433cc3de65a2edd215cc1f
BLAKE2b-256 2bfe67996da0d18f4844132631777088d6db7cd1ecc013f3f2b921b69aee083f

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 360ae03d7ebeba4f11fb53fb1ed217c931eecb8d54e25683ba63254b9bff5c2c
MD5 0b79bd4242f0ba0b39d26fea35b818cd
BLAKE2b-256 0006f739b8178f13f477bc7ad2d99c9a8c4abbc5c70b91f1acfc22c327849ddc

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ebc12f80c70df3cecbe8677722fbdd6b1be0926bd45446648ae5d9f579a6f22
MD5 35ed21040431f1ca88567a276d67be07
BLAKE2b-256 471f7b628dc1c8512616a63bd8f86c82e081bc10bc78dd4ac9b28714b38e9942

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a9da7b8e8eebf3e0cfbf276e67981fa1780399130de880f0ec20631a359c8667
MD5 9dfac723a033b9aa48c3526c456d02b0
BLAKE2b-256 9937581dcd3a9970733f4668e41e5c044372d8a2ba79438a4948bf5a8c391d97

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp312-none-win32.whl
  • Upload date:
  • Size: 237.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f62da2fa6265ca688ad91fb609a2c4bee00dd0141d462c44d25ff3dc6ec59a2d
MD5 8d76b586e62b307085f60ed695465393
BLAKE2b-256 bf82915e38d54b9aacaf5a29ecaa04d1c349ba5d2e4e7988852d050433502429

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b11ee5497161722aa185e1a02c6c9f21507479d753fe5cf2eaa843d2b089f58
MD5 88d0e4ca843eadcc4ebf2f52731184b2
BLAKE2b-256 c5966ca550de975efc166e95ef7b4dcc9ad1b79b4b74cf32751b34976c6a6f59

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9dbeb2ac97a1c436b757cec247742f6e349c482f3af104ca422faf3f1ec8888
MD5 b36bf6266c222612c9db4384667d71c5
BLAKE2b-256 e19a6e17a92d37673b060a0a4780c043f0f3b339170a816cbda401abd465c485

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39c4678a025093699e484e396a790d2ea687048cba4b51f08d7a9aed69388998
MD5 5c38e7122200785d9a6eb2a2c0bbd9d1
BLAKE2b-256 c779f66641406fabf8b8f73e27026fd1744a072ff6dd723a3bd05e8b4b6f699d

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 703e57a3a5ca0692db43fed22030e3278b93fff21ec555a1185d90234702c22a
MD5 4f64ef15e19755adc13fea6f506c3b0c
BLAKE2b-256 3e334efc28b75aae048881646e290d4ffa4a4a86897f646145829d17127ae3a3

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd456b76498fb46bbb2286849c32a15565fae81c4c6f975784cc3f1e7bb98bce
MD5 c6cd8f0053f2d1bf932fbe6e090d010d
BLAKE2b-256 61e62da437537a76129c0f5ecc47608329e716a11e72a91c1f86770953bab2ad

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2c1ac3d1c9ba4dccf6eae2d4cc076ad54fc0eaf2d65bd8f8c5a0dd4de9b6e0b2
MD5 4815aea60f0979d88e7824b4516d0d8b
BLAKE2b-256 59188fae50da4c441b2aca64c39e76f00f130424586a15c462d0a0acc66b62bb

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp311-none-win32.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 13dd97a2e3f7e85e4130f0d56de5fc9374496f36010d1041666508cb06595bbc
MD5 4650688fccf7b1485d80da9cdc0ce7dd
BLAKE2b-256 22f840cb1fccb0daaa0b90bba5651a187259484c8119e4ea0d8d3521173591ab

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9532421f802efc00020bd323ef3b0689be1f77b83e75b855a21d378f6b16bc4
MD5 b5da5336d013bc331f177841054ff625
BLAKE2b-256 ec5705057e5bbe005626575d1673d9a5b1fe94acf4d467c4fd06fe0e264ed025

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a145f670c9059208ad1cda6e28868aa8e01a1ec388954e283a53e70ea9f13e3
MD5 185d47c6fcc01f0465558e1178845e98
BLAKE2b-256 50c3dd8659316c9d26d28e965cdbe293712aa7323251e3f6197ec16491fff4af

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c7bda874c7c9a35298696cca3529b0bde5b7e39bacdb24a71bafb56909c89e0
MD5 7f1beb2cb88c1e77615ff2545300531f
BLAKE2b-256 edb6a06cd3a33f8cfde6fd8d582731c4880d7249fcc1cb0c91633ed833bc1e18

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68dd04be37533bb7ae24ee017463f24e4fc2ba49669011042d37dad3d3918fdd
MD5 2e06ff31b8615c2dabb650b69b6896f5
BLAKE2b-256 7eeeed702d09d8963efb7eea4e5cef12a3317e4a0a9e8332a4dfe77e8c012b49

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b66a27eb43920f337a63401307793f4d786c04c10541b4d12478243f022bd6d
MD5 d49c198290c8bcbe6162ab53be6e0fab
BLAKE2b-256 5c7d7b095edec9e1084547c93eebb78270b1d6b421586f71b58dceebac018266

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d720b92dd771950a172e26ba8be14c8cf322cdd1ae994b39823bb500747b402
MD5 a438232459fc1fcc6fcc234a415810d2
BLAKE2b-256 6e10ba344ae77b420bce533234cbe63ff6f2fcf75b04f3eb8e3d30eba51a63a4

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp310-none-win32.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d19490910ec60d7a2df032963b4dde760f4c4c5fd9646bc378ec1953ae478d61
MD5 d9e22df7399868c9590b47853f59b69b
BLAKE2b-256 1f5f2d6f777b645ca9701537b22316a3899f443fcf5e708b5af0356adb2639e2

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6f805bf174dda032d5b569681a97a329fb6202963ef3058bdd44dbeba9748fd
MD5 6fb46efb922af9d44d4e9ff1eb135e20
BLAKE2b-256 6fbc5ed7b98a7bb9de37dafc10974946a5d19bd585dafd8b68fa47db71775d3c

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9683fc0a8f4f508c088e31f39f66b3f5e8d4451b12ed0a4c07a669d699f79b1b
MD5 c2c911f1d15cb9aa8f19468e7b3c260c
BLAKE2b-256 31ac67710afb1e7b0f0e81536b911f8096496fa876f4dd8d6bc517e2ab7763a1

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ab375a4789de4a72138745103123a175cbfa7a217bb2bdabd6f2261bbd7f8aa
MD5 706235df0e44b36255a348aff019d289
BLAKE2b-256 d1a91a26ef457a00eba4d974c86eabe357d2726c878a363bf3a9e23b5c40fb85

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c0d833bbd2f15bf0df80667802b6afd234e018d54de1407fa338986ea0c87c4
MD5 99d223079fa0a44c5c1eb980aa8a27b2
BLAKE2b-256 94d54bc37d8d591479a3e2c6c7ea62ac97955ffafc8ce36c42bfebd13bb893ff

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 819330f8531edc0bb36909e68cce91435d0050e1dd7b2f56a066beb58316a347
MD5 29235fcbf0f023d9bb4a2919e742ef7e
BLAKE2b-256 dc38081b62ef06174eaef32e614752814a5822a9b3fc68c802a314e873b6c447

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a5d7b6e8a37317320b0625221df631c345831692dc11598f6ef2fec65cf4c2f
MD5 1eb3bf928c68fc2fb5c47964cbc58db2
BLAKE2b-256 26a02deda9a0c582113dfac6f144cb636325ea1b1a418277b713e93b42e75acf

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp39-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp39-none-win32.whl
  • Upload date:
  • Size: 238.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0578bf75002ad82e2a84e9a1bdd9ee193602610cfe5a55bc0f13a4175f8b1d11
MD5 ddb3c4dcb3de3f768b9c4348e8a94a5a
BLAKE2b-256 37f8b8e2f50533495c71482da88a43dd99f855a3804c20308f24999fe3f6f0d2

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e678f0b7a59ec6bd5959407335c8675ba3281235f26ba523d4c34dd450ce8eaf
MD5 59635710049fe0367f41f54f20663d91
BLAKE2b-256 365b6e7afc7433ac097866bbd58a8644df70f3524dbaed354504c6a527f76d20

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efb8d99fd0cd0a4bccf3be62dae5784ef21976698b0401acda70b41829d75c2f
MD5 ec4963bdf7462b4280a8eae8af7952c1
BLAKE2b-256 56bf7ae309d9177d2871bfbb985c06b4171502104bbd4ae9554eaa9c4d1471de

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d59b0f3e259ceb72debce51c5810febb7ba72137e88790a25fece0a5005fcbf4
MD5 933685e344330eb2b9c428711c0c5b21
BLAKE2b-256 d7f78cdc31167b68b6598d1b4361f80e0621d235f4b9eefd4c001b58c64bb112

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ed8f498a0e68ed2429fa2b49c63c0a82efde9cfc3b9317b8c1d1d3d77d8a685b
MD5 d189369f90bfd4b2f0b4443847010bce
BLAKE2b-256 706e26b2eb2d7950d248c66ade6ec1d26263d4278b1aaaaceda5ec6f7579dae3

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp38-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp38-none-win32.whl
  • Upload date:
  • Size: 238.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a4cdb71c3b83e956f7f3530efeb9cd09187a6a119b18a057581d31c68445f022
MD5 258ca018a08af403b0cfb74e6778f048
BLAKE2b-256 7b85c7ec76873163d9c5e7b9b915caba919d16ac1c6e262898e3a71b9ea4f350

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 155b56c8280cea65e4995e3902f832cec86bab506b12e46fb0a7265fbb3c499c
MD5 3bcaaf54f46dd1523ea8b1ff40048d4c
BLAKE2b-256 70951fe1b952e520b2caf81677c8afda7d78b27ffad350ccee0c3ccfc90c029b

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 271b911dc75eb612487b6b740588810aa9d06baed13ab1726468a67e9473f962
MD5 5ada9c8d1d676ff850df4ccb1fb1fde4
BLAKE2b-256 2a72e826b3dd2b6edc8941c98d206691c7940f3311efadcf35d9b8c6d5ce8064

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 802c51eb91ab5075d867049678f230b410f4792e0c0a565b8707323a95482f77
MD5 999e85cc6a5714503e288472ed658020
BLAKE2b-256 57c3e177bb7ecbbddbae386d8a979253dcc5189ab319e9e4224ca750e29e658e

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 c6cc8f8bbe608343cb817fab384c54e1f5b33a08f648d3c5af9c73f0b448e27c
MD5 4c91e1e8fd3b3595de86b3643e0976f2
BLAKE2b-256 84873ef5edbb98eff5421258bac02eb2c88bc15c67c9047949a21d2969edd3a1

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp37-none-win32.whl.

File metadata

  • Download URL: gc_count-0.2.1-cp37-none-win32.whl
  • Upload date:
  • Size: 238.2 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for gc_count-0.2.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 10e525effc4fce2e8f728638df24eda5c022e7cccfcdda24df025b545e399b1f
MD5 8d73c0b832a96db8c71e8f147350268f
BLAKE2b-256 7e162a23f41675da9ec4dd68f02e69b17c0ed427fafe396fca30de24c0b3deaf

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 244cf9d905129848445980104e55c05a3ef9d4637da20bb4a650971c8e6c02a3
MD5 e2396f3ec5f50ccffe53cd6da43b904a
BLAKE2b-256 3c723b71b5b7f8ce9fb7bbf85abf5138cb4995cabcde2ff06860f14c707dee6c

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3651f19b0004000f53f1c4d8146d505d250cd1455b8b451b0104584c8af5f3eb
MD5 990d95d36b87b28fb68d9c452009ef93
BLAKE2b-256 e2ee358d9180d9999797b4f3bba1f23ac28015ae54b1547143272ae67a1b10b4

See more details on using hashes here.

File details

Details for the file gc_count-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for gc_count-0.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9ae41c5eb947d2f1c096f0263903adfe1038408d6ce768f636c80337848839d
MD5 3bb19dce16f7f0067f93762276f89b1f
BLAKE2b-256 2b7b039bf9f2951f2988bef4d5198b0919da1d0e9552095db876f448ddf84f82

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