Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Giorgio C
    Member
    • Oct 2010
    • 89

    Extract multiple sequences on ncbi by gene symbol

    Hi all,

    I have a lot of gene symbols belonging to the same organism and I need to extract the corresponding sequences on ncbi.

    The gene symbol are all like: NMB0001, NMB0010, NMB0015...

    Is there any automated way (scripts, tools,..) in order to obtain the fasta sequences?

    Thanks in advance,
    Giorgio
  • Richard Finney
    Senior Member
    • Feb 2009
    • 701

    #2
    Download gene_info and gene2accession from NCBI.

    run these :
    "wget -nc ftp://ftp.ncbi.nlm.nih.gov/gene/DATA/gene_info.gz"
    "wget -nc ftp://ftp.ncbi.nlm.nih.gov/gene/DATA/gene2accession.gz"
    Run gunzip to get these two files uncompressed and readable.

    Get your genename(s) converted to entrez gene ids (second column), make sure taxonomy id is 122586 (. in your case).
    Convert the gene names to GIs (gene info identifiers) or accessions.

    Like this ...

    bash-3.00# grep NMB0001 gene_info
    122586 902103 NMB0001 NMB0001 - - - - acetyltransferase protein-coding - - - - 20120121

    bash-3.00# grep "122586.902103" gene2accession
    122586 902103 - - - AAF40480.1 7225226 AE002098.2 66731897 - - ? -
    122586 902103 PROVISIONAL - - NP_273067.1 15675949 NC_003112.2 77358697 6 497 - -

    Cut out the the accession(s) you want, either RNA or Protein. Put them into a flat text file as a list.
    You'll want to program using bash/perl/c/command line utilities, whatever to automate the two basic commands above. Be careful.

    There's supposedly "batch entrez" : http://www.ncbi.nlm.nih.gov/sites/batchentrez

    But I've found it to be unreliable. It drops some accessions. Sad but true. You're welcome to try it.

    The absolute best utility for batch downloading is "idfetch" : http://man.cx/idfetch%281%29 . It's command line, takes parameters, you can give it a file of your accessions or GIs and crank it up. ....downloading ... downloading ... downloading ... wahlah ... your file appears ...just like you asked for. I keep an old copy from an old NCBI C toolkit around and ... apparently it's still available in ncbi-tools-bin package ...

    I run this on Linux/Unix command line ...
    sudo apt-get install ncbi-tools-bin
    and idfetch is there !!! So you can install the ncbi-tools-bin package and get it.
    ___
    sudo apt-get install ncbi-tools-bin

    $ man idfetch | head
    IDFETCH(1) NCBI Tools User's Manual IDFETCH(1)



    NAME
    idfetch - retrieve biological data from the NCBI ID1 server

    SYNOPSIS
    idfetch [-] [-F str] [-G filename] [-Q filename] [-c N] [-d str] [-e N]
    [-f str] [-g N] [-i N] [-l filename] [-n] [-o filename] [-q str] [-s str]
    ....
    Last edited by Richard Finney; 01-24-2013, 08:56 AM.

    Comment

    • Giorgio C
      Member
      • Oct 2010
      • 89

      #3
      Thank you so much for your time and suggestions. Actually I tried 'batch entrez' and as you reported, it's not so good; so you're right about that.

      I really like your last option and I'm gonna try that.

      Thanks again.

      Cheers,
      Giorgio

      Comment

      • dexterslab
        Junior Member
        • Jan 2013
        • 5

        #4
        hi,
        you might also wanna look into the BiomaRt package for R.

        Comment

        Latest Articles

        Collapse

        • SEQadmin2
          Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
          by SEQadmin2



          Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
          ...
          07-09-2026, 11:10 AM
        • SEQadmin2
          Cancer Drug Resistance: The Lingering Barrier to Rising Survival
          by SEQadmin2



          Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

          There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
          07-08-2026, 05:17 AM
        • GATTACAT
          Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
          by GATTACAT
          Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
          07-01-2026, 11:43 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, Yesterday, 10:26 AM
        0 responses
        13 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-09-2026, 10:04 AM
        0 responses
        26 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-08-2026, 10:08 AM
        0 responses
        16 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-07-2026, 11:05 AM
        0 responses
        33 views
        0 reactions
        Last Post SEQadmin2  
        Working...