Skip to main content

Overview

https://badge.fury.io/py/pybedtools.svg?style=flat https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg

The BEDTools suite of programs is widely used for genomic interval manipulation or “genome algebra”. pybedtools wraps and extends BEDTools and offers feature-level manipulations from within Python.

See full online documentation, including installation instructions, at https://daler.github.io/pybedtools/.

The GitHub repo is at https://github.com/daler/pybedtools.

Why pybedtools?

Here is an example to get the names of genes that are <5 kb away from intergenic SNPs:

from pybedtools import BedTool

snps = BedTool('snps.bed.gz')  # [1]
genes = BedTool('hg19.gff')    # [1]

intergenic_snps = snps.subtract(genes)                       # [2]
nearby = genes.closest(intergenic_snps, d=True, stream=True) # [2, 3]

for gene in nearby:             # [4]
    if int(gene[-1]) < 5000:    # [4]
        print gene.name         # [4]

Useful features shown here include:

  • [1] support for all BEDTools-supported formats (here gzipped BED and GFF)

  • [2] wrapping of all BEDTools programs and arguments (here, subtract and closest and passing the -d flag to closest);

  • [3] streaming results (like Unix pipes, here specified by stream=True)

  • [4] iterating over results while accessing feature data by index or by attribute access (here [-1] and .name).

In contrast, here is the same analysis using shell scripting. Note that this requires knowledge in Perl, bash, and awk. The run time is identical to the pybedtools version above:

snps=snps.bed.gz
genes=hg19.gff
intergenic_snps=/tmp/intergenic_snps

snp_fields=`zcat $snps | awk '(NR == 2){print NF; exit;}'`
gene_fields=9
distance_field=$(($gene_fields + $snp_fields + 1))

intersectBed -a $snps -b $genes -v > $intergenic_snps

closestBed -a $genes -b $intergenic_snps -d \
| awk '($'$distance_field' < 5000){print $9;}' \
| perl -ne 'm/[ID|Name|gene_id]=(.*?);/; print "$1\n"'

rm $intergenic_snps

See the Shell script comparison in the docs for more details on this comparison, or keep reading the full documentation at http://daler.github.io/pybedtools.

Download files

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

Source Distribution

pybedtools-0.12.1.tar.gz (12.7 MB view details)

Uploaded Source

Built Distributions

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

pybedtools-0.12.1-cp314-cp314-musllinux_1_2_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp314-cp314-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp314-cp314-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pybedtools-0.12.1-cp314-cp314-macosx_10_15_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pybedtools-0.12.1-cp313-cp313-musllinux_1_2_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp313-cp313-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp313-cp313-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pybedtools-0.12.1-cp313-cp313-macosx_10_13_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pybedtools-0.12.1-cp312-cp312-musllinux_1_2_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp312-cp312-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp312-cp312-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pybedtools-0.12.1-cp312-cp312-macosx_10_13_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pybedtools-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl (15.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp311-cp311-musllinux_1_2_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp311-cp311-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pybedtools-0.12.1-cp311-cp311-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pybedtools-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp310-cp310-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp310-cp310-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pybedtools-0.12.1-cp310-cp310-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pybedtools-0.12.1-cp39-cp39-musllinux_1_2_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pybedtools-0.12.1-cp39-cp39-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pybedtools-0.12.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

pybedtools-0.12.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (14.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

pybedtools-0.12.1-cp39-cp39-macosx_11_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pybedtools-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pybedtools-0.12.1.tar.gz.

File metadata

  • Download URL: pybedtools-0.12.1.tar.gz
  • Upload date:
  • Size: 12.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.12

File hashes

Hashes for pybedtools-0.12.1.tar.gz
Algorithm Hash digest
SHA256 f459def3b430b4de6689a800d5d7b38beb313436cfb9d5e966600afca909415a
MD5 0625ff45e72541b4a36feaa8bdb1e970
BLAKE2b-256 8c0e3b645561e25640cd5ffce29e7e1966e67b3ea49b7091910e5e2f43c203db

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16672b38faebc3d6f3b57557fe6ab2df8eb576cfe8b1c1b3a7f3efa1c44929b1
MD5 4ff3f9eab0147cc8f79e33cced4d1656
BLAKE2b-256 64264af27808455f9f33aa0f9179c18601de1fdd82b19323d6aa210c7f3217cf

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5cd30d14cdfdbb02955fe42279b82f0c914d58754a7805f9ade77abbbc6d6cb
MD5 cf8221ef0b70eec91a7ee1390e665c3e
BLAKE2b-256 58d4bb806967e9786b5ae793028241c3b127a3a1f1edc5f3f21440d2326342ff

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dace8a51b56b50f1f4623b3b9f5cce359d9a8e6039cfd20f5ccb7a15b2eb34b
MD5 c84b1e59933e73a9617c0e7af0d9563d
BLAKE2b-256 af7589b1f6d2c3cc4a1c43adadfc379b9f8c0bb3d0d9692af6a44ce32437141b

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a5ddd2aee64d2abed484740836214ef74a3c8d0c0920e0b3821a40edad8c002
MD5 a8a474bd82662396ad5fc97453bb0fd9
BLAKE2b-256 0ce9e83e1872a89c0008ece8f4259d087dfc61b49542c70744ae40625526c022

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86296ef5029dd53d12953897bb035c02cf4b8710d226ce1455cb167778e9005
MD5 63c7bfb065aad0c1f766d6d6d96b815c
BLAKE2b-256 d35b77873cbfd90718d94467d07ee49df058cdfaa189923e7626dc058c18061b

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2f9d5135704743a1033ceffc9a94dfc6c09d7e02199fc8d6be9a64529607d838
MD5 bcdb647ab4964cd2e83b72017fd9d233
BLAKE2b-256 267434806dd01b64a6610eb1d6e798a38dd3bdea097a039c34186b1db0164621

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d9b603c54da9780547525839d1fdc4c102a0b9091e2e3254f41bfd24ab4602d
MD5 ed90ec7ff0e51d57a1e1531930a8365f
BLAKE2b-256 5880882383bae9328de6c783b6b1cec55029c2281abbbcb1236d539d99a4b9e1

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a7f3e35abd72c36805825b6920a9f4f35c4887ae63668782310655456d857bd
MD5 f5a4457f1093863dafe31b7cd51ba7ee
BLAKE2b-256 3aa8ae363c56e7523c422b3c435c8f506b4225941290881e43501c5e98fdba30

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5de3bec84f3df7e70a1ea2f9acdd95cab4d33a6bd69269b4841871cd9fb0be49
MD5 dd6b73563cef5064843c7ae4367e8140
BLAKE2b-256 06b35c8619c0dde54fc9aaa328afc07c42dd3a17ee270ba2ed7825ace1ee8e74

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59960092527d30d5f11d0385939f6f41ad3a74516714dbde1f898d1642135fc3
MD5 21942d1ef4c4187b8cdb58a6f07efa04
BLAKE2b-256 908c4e58a9b3716be394103c968b4b6d7f4b3cde7d29ac89316717c427eacfe7

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5505567dccfba72473cd9773d7145294bf02b74d8db7ac80e7e280b0b92a457
MD5 43c011ff5ba606916793864d3415a35a
BLAKE2b-256 39b2090a6acd271c80a5b20f5d6d49e30d9b5f96c62b2210f4893e469eea153d

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8831b05e0b7729bcba45c65ae352684309775b9200ad7ed86b19e5810617a36a
MD5 7bbeff6ab9561973ce6b5fbbe15e532d
BLAKE2b-256 1a9e7bc885975df6f445747c79f3438b802c7e6ed7fda011aa6ea0504edfdf48

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 743ff2a994ef75443c90460f75f7a0ee60add46fd3e38ea79bb612ada5dab395
MD5 eded5e78097fdb68048fd0ef858d1a13
BLAKE2b-256 987f66ddab1eb0ae3d57eb110fbe8e69eb822478fd3af718027c6e93b0e71d48

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdfb43cdb0b3b15d97db07ad2b2e1aa3ccc052725d390d6d5d5de13ed68406f6
MD5 bf630f96d53d69d6a99c0b9906f5f824
BLAKE2b-256 99fe7cc24718eda08a71761dd8f46b27884f047bf12512189b4a2ceb59df9619

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb7978af275777d9a1c19a29ae286cc7c281213efebf4dfcba4d638a742e048e
MD5 8164e64338ae58ef891b15f71c9d3a27
BLAKE2b-256 46db6e7f213e0e6040357d88f63deaf8c28a17e818490443d68c7e6a65308077

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87c6c6c1d2bc3daa19e43c71b15e2ee36a32c5bb3125b1612c5f0d34ba31821a
MD5 ba54799868b0d9f84df9d06cd152b0d8
BLAKE2b-256 04f76468c199f1b2f2dd15d894f87c36e7a3de73e4716d07a8a6d0002f85055e

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e4e46a05eb31cb489372cc6347d0b2db0ee6e513c44a7f9126cfa2d5897c568
MD5 d291400a8749499a13e78811c3a55835
BLAKE2b-256 92c50d78377d44ba8c1e6a704273b4fbe2689015fdf35d18d98689a26e53a831

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c566bfa34e814a7ec488ff97803f55e42179b017d0b0c55fba53f8d4f41cc0c2
MD5 551777bb6d363b18cdc555b7c1023e4b
BLAKE2b-256 8580eed937e6276d8844030dfd1afed421b89285d0e314b9ec89b69751295fcd

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79b16c3edfffd0b05182b570a9c1d13cd5b974dc32ec1229657f5640da037308
MD5 e93a427648af468df70bb36691146aa9
BLAKE2b-256 0e796ec30af6d925849451bce12117369a12ce810cdf0e87836ef507976b6c67

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cafef1e9a119fac78af624b205c8570d29d6b681e4d21f0573d742531791772c
MD5 4933506595658fc9dfb6557a83c109ac
BLAKE2b-256 387ec4699cae52ca774e69cd24e3be694397293845a8ebbeb130d7a794681f3b

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fbbc5a0958841276ecc82047dc79bd088a172db5914de09b35f35b76284254e
MD5 77e452ed32bfdc0d33c66df970c51c2f
BLAKE2b-256 adeeb84432dd00d82634ef2bcf9b4c9644cfbf0f29750a629561c198d657e88f

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ba9eaafc60d6f474943b51370b6a2a65ccf70ee4b6b6d2720ce800e0f0cbd9b
MD5 0842c24484399f9b1d366d1652349f24
BLAKE2b-256 eed5e3a20a20210741a21ad29215e3a2d67c639d1953d825c74160b3e5eeeed6

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c96fca320d1d58b672ab876a0f6abf0e5b85737370a0ac4edb3974757b86e3f
MD5 4393ff4be4dfed557a03e9d66618d012
BLAKE2b-256 8e9b1069ca1d3c759fe0da612bc14b080ad7b30b3cd4eae302ca95d468666d86

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2220f7be77d04f0534a4d107e0346d2b3df0c77ac732a87ffe3ba44f5ff71ef
MD5 25d52caa62fec7f06eb8c478b43b0d0f
BLAKE2b-256 3f28e589db384a6a53701dc977ff4ec303689209be841ce26e4ce72b4c41385c

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f50c7846901d6b2816807fc5bcc8623a12826c67ec3c21e7d623b839c7c59e99
MD5 b7f27e7e9e492ca3f300a961bc064773
BLAKE2b-256 b7bc3d6f985e0872b13ee44b153021fed67e10b90b08be93a3bb19ad3b963a2b

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa00ba749851212bdfc50334b64b6bb22807ba852c4efa451d258415398b899
MD5 5ad0fa8c60ebe2a8d5dd5bfa1d78f128
BLAKE2b-256 ec446964aa2f3cf63f7c81a7ff7127814db4aaa1a69202fc4f73950592ff7a0f

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42e3007b2e52135c76df699f12a9f6562babf5cb386be15e5f94f704dbffb047
MD5 829b8e9dbbb367599ae5b68994cccf29
BLAKE2b-256 91f1500be32a37e6722885b3a8d854a6e03eeff9fc612ab7ecd736ca3db3012f

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 599d1c8b01bbe55fd301cda32a2b969398062665acd0ce81bc280630ac706b29
MD5 efdb79af0cadd6b62ed0ba109ff91971
BLAKE2b-256 0de3241102a884422723a0149c655ecb38bf6922b8c43b33879d7b188860971f

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bc811064439f0156f22efbef532322a5897ab6d25d8ab335e8bcb4c3a30656e
MD5 589ae6456e888ddb0fc56cf29f91da25
BLAKE2b-256 6d69ac6934c878b1c2d978f065fff938733f1b3618a8e5dbe0119ccac28c7cc9

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98d0d23e677db3cdc4e1645869f152ce6276e065651356b5147e75c6d34bd498
MD5 ad57c0bc8cf3b46ced315643d3999c33
BLAKE2b-256 45301f209c4423c22cfcc8c0e879663696c985a64ac5ed387e84363aabe8fdfd

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bda42ef0b54c8e37678afed807043659c9c33a85c8d17e9c6f83630b75178061
MD5 c634472cc7bef3799d3cfac3fdad3cb6
BLAKE2b-256 9abf613e0fe341676943e16833636da58636cd0b757edfab9266cfd3977ef281

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a950c58a4cf7f25b448b6c044f90b78fb3d5705275064e380afa07aeef6d761
MD5 a03b97018e6e73b09e7ad8520239e8b4
BLAKE2b-256 ab228fdf092cf0bfb94eaf58632fd847f5e336a222977c64a31d4b8933cbde3c

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fc583b2e0c0c51727505b425e73cf8a97e11f89fd39d626e24da6a81b4e1520
MD5 11ee717162c33d138db55d759137e772
BLAKE2b-256 df7c7d0eeb87fc5f7db4c8291302eec8511c0a8ed1bcb46c918bd9666d4edd60

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d007a9e872cfd15023465c72674947a323127ade4003e029e4027dd3d9e3322
MD5 39a3c0e15f29fa919dfc251ae1c866a1
BLAKE2b-256 0df1afeb8ec17fdb3171c5ec1c7e997a261bd4c5082497b1a29025186d114a1e

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6849a8c526ae8bde70ff18a3bddd899d231f74277a074b2c876788ba4c23e00
MD5 e6d9a4adfef7ace1f3521b3ef7c491cc
BLAKE2b-256 6143da59e3095e5c11388a04a3a7bd61c53946b4b07e0acd7c9f103a8154fc59

See more details on using hashes here.

File details

Details for the file pybedtools-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybedtools-0.12.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cea8679910d7473e4b77ead51d8b2d68874c6f5ae6c95efe05ecada83a110808
MD5 83a42ca192928b8e06b8606f148860bb
BLAKE2b-256 dad9cb318e075f5f9b5917b6fbf6f9e20317f4c4f45c18a859d19168dc5d451c

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.12.1 This release

37 files

0.12.0

1 file

0.11.0

1 file

0.10.0

1 file

0.9.1

1 file

0.9.0

1 file

0.8.2

1 file

0.8.1

1 file

0.8.0

1 file

0.7.10

1 file

0.7.9

1 file

0.7.8

1 file

0.7.7

1 file

0.7.6

1 file

0.7.5

1 file

0.7.4

1 file

0.7.3

0.7.1

1 file

0.7.0

1 file

0.6.9

1 file

0.6.8

1 file

0.6.7

1 file

0.6.6

1 file

0.6.5

1 file

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6

1 file

0.5.5

1 file

0.5

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page