We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The function ncbi_snp_query(snp) takes SNPs as input and outputs chromosome, position and other annotation for each SNP.
ncbi_snp_query(snp)
Idea: reverse inputs. Have chromosome and position as input and output SNP identifier and other annotation: ncbi_snp_query(chr, pos).
ncbi_snp_query(chr, pos)
See also #119
ncbi_snp_query_chrpos
ncbi_snp_query_snp
ncbi_snp_query
chr+pos
snps
The text was updated successfully, but these errors were encountered:
Hi,
I have never worked with API/call/get/URL before. This feature is really important, and I would like to help in this.
paste0("https://api.ncbi.nlm.nih.gov/variation/v0/refsnp/", snps_num[i])
I have not idea how to get URL/API to retrieve SNP information based on CHR:POS. I reached out to the NCBI helpdesk they suggested to use entrez:
EDirect Install on Mac, Unix, Linux: https://www.youtube.com/watch?v=rPDXGsLcTQ0 EDirect Install on Windows: https://www.youtube.com/watch?v=hTzqsb1eD10
The best resource I got is https://api.ncbi.nlm.nih.gov/variation/v0/
Any inputs would be helpful.
Sorry, something went wrong.
No branches or pull requests
The function
ncbi_snp_query(snp)
takes SNPs as input and outputs chromosome, position and other annotation for each SNP.Idea: reverse inputs. Have chromosome and position as input and output SNP identifier and other annotation:
ncbi_snp_query(chr, pos)
.See also #119
Todo
ncbi_snp_query_chrpos
ncbi_snp_query_snp
=ncbi_snp_query
ncbi_snp_query
: callncbi_snp_query_chrpos
ifchr+pos
are provided andncbi_snp_query_snp
ifsnps
are provided.The text was updated successfully, but these errors were encountered: