Skip to content

Commit e4b18ca

Browse files
author
Felix Raimundo
committed
add to_bed and associated tests
1 parent c8d5a8f commit e4b18ca

File tree

4 files changed

+900
-0
lines changed

4 files changed

+900
-0
lines changed

bioframe/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"read_pairix",
5353
"read_tabix",
5454
"read_table",
55+
"to_bed",
5556
"to_bigbed",
5657
"to_bigwig",
5758
"assign_view",
@@ -123,6 +124,7 @@
123124
read_pairix,
124125
read_tabix,
125126
read_table,
127+
to_bed,
126128
to_bigbed,
127129
to_bigwig,
128130
)

bioframe/io/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from .assembly import assemblies_available, assembly_info
2+
from .bed import to_bed
23
from .fileops import (
34
load_fasta,
45
read_bam,
@@ -24,6 +25,7 @@
2425
"read_bam",
2526
"load_fasta",
2627
"read_bigwig",
28+
"to_bed",
2729
"to_bigwig",
2830
"read_bigbed",
2931
"to_bigbed",

0 commit comments

Comments
 (0)