Skip to content

Commit

Permalink
fix more fill values
Browse files Browse the repository at this point in the history
  • Loading branch information
alimanfoo committed Dec 20, 2018
1 parent 6028f4b commit 789aec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion allel/io/gff.py
Expand Up @@ -29,7 +29,7 @@ def gff3_parse_attributes(attributes_string):


def iter_gff3(path, attributes=None, region=None, score_fill=-1,
phase_fill=-1, attributes_fill=b'.', tabix='tabix'):
phase_fill=-1, attributes_fill='.', tabix='tabix'):
"""Iterate over records in a GFF3 file.
Parameters
Expand Down
2 changes: 1 addition & 1 deletion allel/model/ndarray.py
Expand Up @@ -4538,7 +4538,7 @@ def to_mask(self, size, start_name='start', stop_name='end'):

@staticmethod
def from_gff3(path, attributes=None, region=None, score_fill=-1, phase_fill=-1,
attributes_fill=b'.', dtype=None):
attributes_fill='.', dtype=None):
"""Read a feature table from a GFF3 format file.
Parameters
Expand Down

0 comments on commit 789aec9

Please sign in to comment.