Skip to content

Commit

Permalink
Merge pull request #112 from pombase/small_fix
Browse files Browse the repository at this point in the history
fix 1st line of modifications not being read
  • Loading branch information
kimrutherford authored Nov 16, 2023
2 parents e071985 + 14f8736 commit d8ea9a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protein_modification_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def check_func(row, genome, allowed_mod_dict):
with open('data/genome.pickle', 'rb') as ins:
genome = pickle.load(ins)

data = pandas.read_csv('data/pombase-chado.modifications', sep='\t', na_filter=False)
data = pandas.read_csv('data/pombase-chado.modifications', sep='\t', na_filter=False, header=None)
with open('data/allowed_mod_dict.json', 'r') as ins:
allowed_mod_dict = json.load(ins)

Expand Down

0 comments on commit d8ea9a9

Please sign in to comment.