Open grosscol opened 2 years ago
In practice, lookup of snv is by accession identifier (rsid) xor by position (chrom-pos)
variants.get_snv(args['variant_id'], None, None, args['full']): variants.get_snv(None, args['chrom'], args['pos'], args['full']): variants.get_snv(query, None, None, False):
get_snv
get_accession_snv
get_position_snv
Issue or current state
In practice, lookup of snv is by accession identifier (rsid) xor by position (chrom-pos)
Resolved when
get_snv
are refactored intoget_accession_snv
andget_position_snv
.