File tree 11 files changed +87
-87
lines changed
11 files changed +87
-87
lines changed Original file line number Diff line number Diff line change 9
9
__version__ = "unknown"
10
10
11
11
__all__ = [
12
+ "SCHEMAS" ,
13
+ "UCSCClient" ,
12
14
"arrops" ,
15
+ "assemblies_available" ,
16
+ "assembly_info" ,
17
+ "assign_view" ,
18
+ "binnify" ,
19
+ "closest" ,
20
+ "cluster" ,
21
+ "complement" ,
22
+ "count_overlaps" ,
23
+ "coverage" ,
24
+ "digest" ,
25
+ "expand" ,
26
+ "fetch_centromeres" ,
27
+ "fetch_chromsizes" ,
28
+ "frac_gc" ,
29
+ "frac_gene_coverage" ,
30
+ "frac_mapped" ,
13
31
"from_any" ,
14
32
"from_dict" ,
15
33
"from_list" ,
24
42
"is_sorted" ,
25
43
"is_tiling" ,
26
44
"is_viewframe" ,
45
+ "load_fasta" ,
46
+ "make_chromarms" ,
27
47
"make_viewframe" ,
48
+ "mark_runs" ,
49
+ "merge" ,
50
+ "merge_runs" ,
51
+ "overlap" ,
52
+ "pair_by_distance" ,
28
53
"parse_region" ,
29
54
"parse_region_string" ,
30
- "sanitize_bedframe" ,
31
- "to_ucsc_string" ,
32
- "update_default_colnames" ,
33
- "binnify" ,
34
- "digest" ,
35
- "frac_gc" ,
36
- "frac_gene_coverage" ,
37
- "frac_mapped" ,
38
- "make_chromarms" ,
39
- "pair_by_distance" ,
40
- "seq_gc" ,
41
- "SCHEMAS" ,
42
- "UCSCClient" ,
43
- "assemblies_available" ,
44
- "assembly_info" ,
45
- "fetch_centromeres" ,
46
- "fetch_chromsizes" ,
47
- "load_fasta" ,
55
+ "plot_intervals" ,
48
56
"read_alignments" ,
49
57
"read_bam" ,
50
58
"read_bigbed" ,
53
61
"read_pairix" ,
54
62
"read_tabix" ,
55
63
"read_table" ,
56
- "to_bed" ,
57
- "to_bigbed" ,
58
- "to_bigwig" ,
59
- "assign_view" ,
60
- "closest" ,
61
- "cluster" ,
62
- "complement" ,
63
- "count_overlaps" ,
64
- "coverage" ,
65
- "expand" ,
66
- "merge" ,
67
- "overlap" ,
68
- "mark_runs" ,
69
- "merge_runs" ,
64
+ "sanitize_bedframe" ,
70
65
"select" ,
71
66
"select_indices" ,
72
67
"select_labels" ,
73
68
"select_mask" ,
69
+ "seq_gc" ,
74
70
"setdiff" ,
75
71
"sort_bedframe" ,
76
72
"subtract" ,
77
- "trim" ,
78
- "plot_intervals" ,
73
+ "to_bed" ,
74
+ "to_bigbed" ,
75
+ "to_bigwig" ,
79
76
"to_ucsc_colorstring" ,
77
+ "to_ucsc_string" ,
78
+ "trim" ,
79
+ "update_default_colnames" ,
80
80
]
81
81
82
82
from .core import (
Original file line number Diff line number Diff line change 27
27
28
28
__all__ = [
29
29
"arrops" ,
30
+ "from_any" ,
31
+ "from_dict" ,
32
+ "from_list" ,
33
+ "from_series" ,
30
34
"is_bedframe" ,
31
35
"is_cataloged" ,
36
+ "is_chrom_dtype" ,
37
+ "is_complete_ucsc_string" ,
32
38
"is_contained" ,
33
39
"is_covering" ,
34
40
"is_overlapping" ,
35
41
"is_sorted" ,
36
42
"is_tiling" ,
37
43
"is_viewframe" ,
38
- "from_any" ,
39
- "from_dict" ,
40
- "from_list" ,
41
- "from_series" ,
42
44
"make_viewframe" ,
43
- "sanitize_bedframe" ,
44
- "is_chrom_dtype" ,
45
- "update_default_colnames" ,
46
- "is_complete_ucsc_string" ,
47
45
"parse_region" ,
48
46
"parse_region_string" ,
47
+ "sanitize_bedframe" ,
49
48
"to_ucsc_string" ,
49
+ "update_default_colnames" ,
50
50
]
Original file line number Diff line number Diff line change 8
8
__all__ = [
9
9
"is_bedframe" ,
10
10
"is_cataloged" ,
11
- "is_overlapping" ,
12
- "is_viewframe" ,
13
11
"is_contained" ,
14
12
"is_covering" ,
15
- "is_tiling " ,
13
+ "is_overlapping " ,
16
14
"is_sorted" ,
15
+ "is_tiling" ,
16
+ "is_viewframe" ,
17
17
]
18
18
19
19
Original file line number Diff line number Diff line change 6
6
from .stringops import is_complete_ucsc_string , parse_region_string , to_ucsc_string
7
7
8
8
__all__ = [
9
+ "from_any" ,
9
10
"from_dict" ,
10
- "from_series" ,
11
11
"from_list" ,
12
- "from_any " ,
12
+ "from_series " ,
13
13
"make_viewframe" ,
14
14
"sanitize_bedframe" ,
15
15
]
Original file line number Diff line number Diff line change 4
4
import pandas as pd
5
5
6
6
__all__ = [
7
- "update_default_colnames" ,
8
7
"is_chrom_dtype" ,
8
+ "update_default_colnames" ,
9
9
]
10
10
11
11
_rc = {"colnames" : {"chrom" : "chrom" , "start" : "start" , "end" : "end" }}
Original file line number Diff line number Diff line change 4
4
import pandas as pd
5
5
6
6
__all__ = [
7
+ "is_complete_ucsc_string" ,
7
8
"parse_region" ,
8
9
"parse_region_string" ,
9
- "is_complete_ucsc_string" ,
10
10
"to_ucsc_string" ,
11
11
]
12
12
Original file line number Diff line number Diff line change 7
7
from .core .specs import _get_default_colnames , _verify_columns
8
8
9
9
__all__ = [
10
- "make_chromarms" ,
11
10
"binnify" ,
12
11
"digest" ,
13
- "frac_mapped" ,
14
12
"frac_gc" ,
15
- "seq_gc" ,
16
13
"frac_gene_coverage" ,
17
- "pair_by_distance" ,
14
+ "frac_mapped" ,
15
+ "make_chromarms" ,
18
16
"mark_runs" ,
19
- "merge_runs"
17
+ "merge_runs" ,
18
+ "pair_by_distance" ,
19
+ "seq_gc"
20
20
]
21
21
22
22
Original file line number Diff line number Diff line change 17
17
from .schemas import SCHEMAS
18
18
19
19
__all__ = [
20
+ "SCHEMAS" ,
21
+ "UCSCClient" ,
20
22
"assemblies_available" ,
21
23
"assembly_info" ,
22
- "read_table" ,
23
- "read_chromsizes" ,
24
- "read_tabix" ,
25
- "read_pairix" ,
26
- "read_bam" ,
27
- "read_alignments" ,
24
+ "fetch_centromeres" ,
25
+ "fetch_chromsizes" ,
28
26
"load_fasta" ,
27
+ "read_alignments" ,
28
+ "read_bam" ,
29
+ "read_bigbed" ,
29
30
"read_bigwig" ,
31
+ "read_chromsizes" ,
32
+ "read_pairix" ,
33
+ "read_tabix" ,
34
+ "read_table" ,
30
35
"to_bed" ,
31
- "to_bigwig" ,
32
- "read_bigbed" ,
33
36
"to_bigbed" ,
34
- "UCSCClient" ,
35
- "fetch_centromeres" ,
36
- "fetch_chromsizes" ,
37
- "SCHEMAS" ,
37
+ "to_bigwig" ,
38
38
]
Original file line number Diff line number Diff line change 26
26
from .schemas import BAM_FIELDS , SCHEMAS
27
27
28
28
__all__ = [
29
- "read_table" ,
30
- "read_chromsizes" ,
31
- "read_tabix" ,
32
- "read_pairix" ,
33
- "read_alignments" ,
34
29
"load_fasta" ,
35
- "read_bigwig" ,
36
- "to_bigwig" ,
30
+ "read_alignments" ,
37
31
"read_bigbed" ,
32
+ "read_bigwig" ,
33
+ "read_chromsizes" ,
34
+ "read_pairix" ,
35
+ "read_tabix" ,
36
+ "read_table" ,
38
37
"to_bigbed" ,
38
+ "to_bigwig" ,
39
39
]
40
40
41
41
Original file line number Diff line number Diff line change 11
11
from .schemas import SCHEMAS
12
12
13
13
__all__ = [
14
- "fetch_chromsizes" ,
15
- "fetch_centromeres" ,
16
14
"UCSCClient" ,
15
+ "fetch_centromeres" ,
16
+ "fetch_chromsizes" ,
17
17
]
18
18
19
19
Original file line number Diff line number Diff line change 6
6
from .core .stringops import parse_region
7
7
8
8
__all__ = [
9
+ "assign_view" ,
10
+ "closest" ,
11
+ "cluster" ,
12
+ "complement" ,
13
+ "count_overlaps" ,
14
+ "coverage" ,
15
+ "expand" ,
16
+ "merge" ,
17
+ "overlap" ,
9
18
"select" ,
10
- "select_mask" ,
11
19
"select_indices" ,
12
20
"select_labels" ,
13
- "expand" ,
14
- "overlap" ,
15
- "cluster" ,
16
- "merge" ,
17
- "coverage" ,
18
- "closest" ,
19
- "subtract" ,
21
+ "select_mask" ,
20
22
"setdiff" ,
21
- "count_overlaps" ,
22
- "trim" ,
23
- "complement" ,
24
23
"sort_bedframe" ,
25
- "assign_view" ,
24
+ "subtract" ,
25
+ "trim" ,
26
26
]
27
27
28
28
You can’t perform that action at this time.
0 commit comments