Skip to content

Commit

Permalink
feat: removed go anti-slims from blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
valearna committed Mar 24, 2020
1 parent 0a702d7 commit 1f70648
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions genedescriptions/config_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ class GenedescConfigParser(object):
def __init__(self, file_path):
with open(file_path) as conf_file:
self.config = yaml.safe_load(conf_file)
self.add_go_do_not_annotate_to_blacklist(
'http://current.geneontology.org/ontology/subsets/gocheck_do_not_annotate.json')
self.add_go_do_not_annotate_to_blacklist(
'http://current.geneontology.org/ontology/subsets/gocheck_do_not_manually_annotate.json')
# self.add_go_do_not_annotate_to_blacklist(
# 'http://current.geneontology.org/ontology/subsets/gocheck_do_not_annotate.json')
# self.add_go_do_not_annotate_to_blacklist(
# 'http://current.geneontology.org/ontology/subsets/gocheck_do_not_manually_annotate.json')

def add_go_do_not_annotate_to_blacklist(self, slim_url):
response = urllib.request.urlopen(slim_url)
Expand Down

0 comments on commit 1f70648

Please sign in to comment.