R package to extract fasta sequence using gene names
I have hundreds of gene names like this: c("SS1G_03709", "SS1G_07286", "SS1G_06430"). I want to retrieve their nucleotide fasta sequence using R package from NCBI. Any suggestion?
r
• 2,800 views
•
link
updated
by
Biostar
•
written
by
genetics101 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Downloading bulk coding sequences from NCBI that include the organism name in the sequence header?
written by Em •Hi everyone! I've tried searching for a possible solution to this for a little bit but haven't had any luck... However, I know there has …
-
How download bacterial gene sequences for specific country or region?
written by Anisur Rahman •Hello, I have a gene name (also sequence) for a specific bacteria. I want to download all nucleotide sequences for this gene of that bacteria …
-
NCBI nucleotide ID to protein ID
written by mxlsherry1992 •Dear all, I have some NCBI nucleotide ID, about 4,000. I want to download it's protein sequence from NCBI. I know we can download the …
-
Retrieve many FASTA of the same gene from NCBI..
written by uwardgma •Hello! I am quite new to bioinformatics, please help me! How do I retrieve multiple nucleotide sequences (from many species) of one same gene in …
-
How do I loop over a list of gene symbols to extract sequences from NCBI?
written by MAPKI want to extract a list of sequences from NCBI. I am esearch command mentioned [here][1]. For one gene symbol, I could do it like …
-
How do I make this perl script work to fetch sequences from NCBI using gene symbols?
written by MAPKI have a text file called `org.txt`. I also have this perl script below. This script works if I just have `$name="SS1G_03709";`, but doesn't work …
-
How I get mRNA accession no if I have gene name and location with the help of perl
written by georgians •Hi, I have a list of Gene Names with mRNA location. I want to know the mRNA Accession no for the particular location in GenBank …
-
Conversion tool from ENST(ensembl) transcript to NM transcript(NCBI)
written by gmora •So I have hundreds ensemble gene transcripts which needs to be converted to NCBI transcripts. I am worried about their being position changes in known …
-
How to get Fasta Sequences with their gene name for many genes?
written by seta<p>Hi all,</p> <p>I have a list of many gene name (about 5000) and I want to retrieve their corresponding fasta sequence. To this end, I …
-
R: Parsing Fasta From Strings In R?
written by Chris Warth<p>My goal is to retrieve DNA gene sequence from NCBI using R, but I get stuck trying to parse FASTA sequences from strings. </p> <p>I …
Using R for such a task is over kill IMO. Use seqtk or seqkit or fasomerecords or grep (if you have sequences in single line).
Sorry, but I want to retrieve those sequences from NCBI.
you can use batch query on NCBI web interface or EBI web interface, NCBI eutils or Ensembl REST api or third party rest APIs for sequence retrieval.
Related post: How do I loop over a list of gene symbols to extract sequences from NCBI?