@@ -525,7 +525,6 @@ def build_petrack(self):
525525 Examples:
526526 .. code-block:: python
527527
528- from MACS3.IO.Parser import BEDPEParser
529528 parser = BEDPEParser("fragments.bedpe")
530529 petrack = parser.build_petrack()
531530 """
@@ -1195,7 +1194,6 @@ def build_petrack(self):
11951194 Examples:
11961195 .. code-block:: python
11971196
1198- from MACS3.IO.Parser import BAMPEParser
11991197 parser = BAMPEParser("reads.bam")
12001198 petrack = parser.build_petrack()
12011199 """
@@ -1254,7 +1252,6 @@ def append_petrack(self, petrack):
12541252 Examples:
12551253 .. code-block:: python
12561254
1257- from MACS3.IO.Parser import BAMPEParser
12581255 parser = BAMPEParser("reads.bam")
12591256 petrack = parser.build_petrack()
12601257 # Later, append more fragments from another file:
@@ -1447,7 +1444,6 @@ def build_petrack(self, max_count=0):
14471444 Examples:
14481445 .. code-block:: python
14491446
1450- from MACS3.IO.Parser import FragParser
14511447 parser = FragParser("fragments.tsv.gz")
14521448 petrack = parser.build_petrack(max_count=10)
14531449 """
@@ -1515,7 +1511,6 @@ def append_petrack(self, petrack, max_count=0):
15151511 Examples:
15161512 .. code-block:: python
15171513
1518- from MACS3.IO.Parser import FragParser
15191514 parser = FragParser("fragments.tsv.gz")
15201515 petrack = parser.build_petrack()
15211516 parser2 = FragParser("more_fragments.tsv.gz")
0 commit comments