Skip to content

Commit

Permalink
Fix for issue #100
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Causey-Freeman committed Nov 19, 2019
1 parent d246dba commit a6e5243
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions VariantValidator/modules/mappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ def gene_to_transcripts(variant, validator, select_transcripts_dict):
logger.warning(str(error))
return True
else:
error = 'Please ensure the requested chromosome version relates to a supported genome build. ' \
'Supported genome builds are: GRCh37, GRCh38, hg19 and hg38'
error = 'Validation will fail if the selected chromosome reference sequence does not corresponds to ' \
'selected genome build. Please re-submit your query and select an alternate genome build. ' \
'Note, if you did not specify a genome build, VariantValidator defaults to GRCh38'
variant.warnings.append(error)
logger.warning(str(error))
return True
Expand Down

0 comments on commit a6e5243

Please sign in to comment.