Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MalinAhlberg committed Apr 24, 2019
1 parent 2bdf1cd commit b6bfdb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/importer/data_importer/raw_data_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def _insert_variants(self):
logging.info("Inserted {} variant records in {}".format(counter, self._time_since(start)))

def get_callcount(self, data):
"""Increament the call count by the calls found at this position."""
"""Increment the call count by the calls found at this position."""
if data['chrom'] == self.chrom and data['pos'] < self.lastpos:
# TODO check this earlier, to avoid partial data to be inserted in the DB
raise Exception(f"Variant file corrupt, variants not given in incremental order.")
Expand Down

0 comments on commit b6bfdb1

Please sign in to comment.