1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
try:
from importlib.metadata import PackageNotFoundError, version
except ImportError:
from importlib_metadata import PackageNotFoundError, version
try:
__version__ = version("bioframe")
except PackageNotFoundError:
__version__ = "unknown"
__all__ = [
"arrops",
"from_any",
"from_dict",
"from_list",
"from_series",
"is_bedframe",
"is_cataloged",
"is_chrom_dtype",
"is_complete_ucsc_string",
"is_contained",
"is_covering",
"is_overlapping",
"is_sorted",
"is_tiling",
"is_viewframe",
"make_viewframe",
"parse_region",
"parse_region_string",
"sanitize_bedframe",
"to_ucsc_string",
"update_default_colnames",
"binnify",
"digest",
"frac_gc",
"frac_gene_coverage",
"frac_mapped",
"make_chromarms",
"pair_by_distance",
"seq_gc",
"SCHEMAS",
"UCSCClient",
"assemblies_available",
"assembly_info",
"fetch_centromeres",
"fetch_chromsizes",
"load_fasta",
"read_alignments",
"read_bam",
"read_bigbed",
"read_bigwig",
"read_chromsizes",
"read_pairix",
"read_tabix",
"read_table",
"to_bed",
"to_bigbed",
"to_bigwig",
"assign_view",
"closest",
"cluster",
"complement",
"count_overlaps",
"coverage",
"expand",
"merge",
"overlap",
"mark_runs",
"merge_runs",
"select",
"select_indices",
"select_labels",
"select_mask",
"setdiff",
"sort_bedframe",
"subtract",
"trim",
"plot_intervals",
"to_ucsc_colorstring",
]
from .core import (
arrops,
from_any,
from_dict,
from_list,
from_series,
is_bedframe,
is_cataloged,
is_chrom_dtype,
is_complete_ucsc_string,
is_contained,
is_covering,
is_overlapping,
is_sorted,
is_tiling,
is_viewframe,
make_viewframe,
parse_region,
parse_region_string,
sanitize_bedframe,
to_ucsc_string,
update_default_colnames,
)
from .extras import (
binnify,
digest,
frac_gc,
frac_gene_coverage,
frac_mapped,
make_chromarms,
mark_runs,
merge_runs,
pair_by_distance,
seq_gc,
)
from .io import (
SCHEMAS,
UCSCClient,
assemblies_available,
assembly_info,
fetch_centromeres,
fetch_chromsizes,
load_fasta,
read_alignments,
read_bam,
read_bigbed,
read_bigwig,
read_chromsizes,
read_pairix,
read_tabix,
read_table,
to_bed,
to_bigbed,
to_bigwig,
)
from .ops import (
assign_view,
closest,
cluster,
complement,
count_overlaps,
coverage,
expand,
merge,
overlap,
select,
select_indices,
select_labels,
select_mask,
setdiff,
sort_bedframe,
subtract,
trim,
)
from .vis import plot_intervals, to_ucsc_colorstring
del version, PackageNotFoundError
|