Skip to content

Commit

Permalink
fixed author attribution
Browse files Browse the repository at this point in the history
  • Loading branch information
maschon0 committed May 25, 2021
1 parent 247ae1a commit 285eebc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions scripts/python_scripts/bed_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions scripts/python_scripts/bedgraph_kernel_density.py
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.
"""
Expand Down
4 changes: 2 additions & 2 deletions scripts/python_scripts/genomic_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/python_scripts/gff_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
gu.parse_annotations(files)
"""
__author__ == "Falko Hofmann"
__email__ == "[email protected]"
__author__ = "Falko Hofmann"
__email__ = "[email protected]"

import logging
import re
Expand Down

0 comments on commit 285eebc

Please sign in to comment.