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,804 views
•
link
updated
by
Biostar
380
• |
written
by
genetics101
0
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How download bacterial gene sequences for specific country or region?
written by Anisur Rahman 8Hello, I have a gene name (also sequence) for a specific bacteria. I want to download all nucleotide sequences for this gene of that bacteria …
-
Is there a faster way to download gene sequences from NCBI via E-utils
written by lmlukoseviciute 6Hello, I am trying to download gene sequences from NCBI via E-utils like this ``` esearch -db gene -q "1496[Taxonomy ID] AND proC[Gene Name] AND …
-
NCBI nucleotide ID to protein ID
written by mxlsherry1992 8Dear 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 0Hello! 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 MAPK 214I 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 MAPK 214I 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 5Hi, 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 3So 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 191<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 11<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?