-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
maschon0
committed
May 25, 2021
1 parent
247ae1a
commit 285eebc
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
""" | ||
This module is for parsing of bed files. | ||
""" | ||
__author__ == "Falko Hofmann" | ||
__email__ == "[email protected]" | ||
__author__ = "Falko Hofmann" | ||
__email__ = "[email protected]" | ||
|
||
# TODO: add parsing safety checks. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
__author__ == "Falko Hofmann" | ||
__email__ == "[email protected]" | ||
__author__ = "Falko Hofmann" | ||
__email__ = "[email protected]" | ||
""" | ||
Module that runs convolution with different kernels on a bedgraph. | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
from genomic_features import Transcripts | ||
""" | ||
__author__ == "Falko Hofmann" | ||
__email__ == "[email protected]" | ||
__author__ = "Falko Hofmann" | ||
__email__ = "[email protected]" | ||
|
||
import logging | ||
from abc import ABC, abstractmethod | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
gu.parse_annotations(files) | ||
""" | ||
__author__ == "Falko Hofmann" | ||
__email__ == "[email protected]" | ||
__author__ = "Falko Hofmann" | ||
__email__ = "[email protected]" | ||
|
||
import logging | ||
import re | ||
|