Skip to content

Commit

Permalink
add var for additional column
Browse files Browse the repository at this point in the history
  • Loading branch information
kshefchek committed May 8, 2016
1 parent cd5b1d3 commit ac5c956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dipper/curie_map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
'dictyBase' : 'http://dictybase.org/gene/'
'EcoGene' : 'http://ecogene.org/gene/'
'ENSEMBL' : 'http://identifiers.org/ensembl/'
'FlyBase' : 'http://identifiers.org/FB:' # also variants, pubs, genotypes, strains
'FlyBase' : 'http://flybase.org/reports/' # also variants, pubs, genotypes, strains
'GenBank' : 'http://www.ncbi.nlm.nih.gov/nuccore/'
'HGNC' : 'http://identifiers.org/hgnc/HGNC:'
'IMPC' : 'http://www.mousephenotype.org/data/genes/' # FIXME
Expand Down
2 changes: 1 addition & 1 deletion dipper/sources/FlyBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ def _process_organism_dbxref(self, limit):
filereader = csv.reader(f, delimiter='\t', quotechar='\"')
for line in filereader:

(organism_dbxref_id, organism_id, dbxref_id) = line
(organism_dbxref_id, organism_id, dbxref_id, is_current) = line

if self.testMode and\
int(organism_id) not in self.test_keys['organism']:
Expand Down

0 comments on commit ac5c956

Please sign in to comment.