Skip to content

Commit

Permalink
Merge pull request #107 from openvar/develop_v3
Browse files Browse the repository at this point in the history
Fix for issue #100
  • Loading branch information
Peter Causey-Freeman authored Nov 19, 2019
2 parents 61d0ffd + a6e5243 commit 793cb8e
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 793cb8e

Please sign in to comment.