Skip to content

Commit

Permalink
Added proper magic line and file encodings
Browse files Browse the repository at this point in the history
  • Loading branch information
jenzopr committed Jan 16, 2018
1 parent cfa69d8 commit fdfc8ac
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.0.1-alpha (2017-11-08)
## 2.0.1-alpha (2018-01-16)

- added summary file for invalid annotations
- added proper magic line and file encodings for python source files

## 2.0.0-alpha (2017-11-08)

Expand Down
2 changes: 2 additions & 0 deletions uropa/annotation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3
# coding: utf-8
"""Contains code for annotation process."""
import sys
import operator
Expand Down
3 changes: 2 additions & 1 deletion uropa/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8
"""Contains functions for UROPA configuration."""
import json
import ast
Expand Down
3 changes: 2 additions & 1 deletion uropa/overlaps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8
"""Contains functions for UROPA overlap evaluation."""

import os
Expand Down
4 changes: 3 additions & 1 deletion uropa/uropa.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env python3
# coding: utf-8
"""
uropa.py: UROPA - Universal RObust Peak Annotator
@authors: Maria Kondili, Jens Preussner and Annika Fust
@authors: Annika Fust, Jens Preussner, Maria Kondili and Mario Looso
@license: MIT
@maintainer: Mario Looso
@email: mario.looso@mpi-bn.mpg.de
Expand Down

0 comments on commit fdfc8ac

Please sign in to comment.