Skip to content

Commit

Permalink
bumping source versions for yeast parsers without good versioning to …
Browse files Browse the repository at this point in the history
…start fresh
  • Loading branch information
EvanDietzMorris committed Feb 2, 2024
1 parent e9fa2a1 commit 501e797
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion parsers/yeast/src/loadHistoneMap.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class YeastHistoneMapLoader(SourceDataLoader):

source_id: str = 'YeastHistoneMap'
provenance_id: str = 'infores:yeasthistones'
parsing_version: str = '1.0'

def __init__(self, test_mode: bool = False, source_data_dir: str = None):
"""
Expand Down Expand Up @@ -73,7 +74,7 @@ def get_latest_source_version(self) -> str:
:return:
"""
return 'yeast_v1'
return 'yeast_v2'

def get_data(self) -> int:
"""
Expand Down
2 changes: 1 addition & 1 deletion parsers/yeast/src/loadYeastGeneExpressionGasch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_latest_source_version(self) -> str:
:return:
"""
return 'yeast_v1_5'
return 'yeast_v2'

def get_data(self) -> int:
"""
Expand Down
2 changes: 1 addition & 1 deletion parsers/yeast/src/loadYeastNucleosomesGSE61888.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def get_latest_source_version(self) -> str:
:return:
"""
return 'yeast_v1_5'
return 'yeast_v2'

def get_data(self) -> int:
"""
Expand Down

0 comments on commit 501e797

Please sign in to comment.