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
          Nine Things a Sample Prep Scientist Thinks About Before Sequencing
          by SEQadmin2


          I’m not a sequencing expert. I’m a purification scientist who uses NGS to evaluate workflows my group develops. With this perspective, we think about the sample first and the NGS workflow second. The sequencer is an exceptionally honest reporter, but it can only report on what you give it, so whether you get clean, interpretable data from an NGS workflow is largely determined before you begin.


          Here are nine questions we think about, in roughly the order they matter, before...
          Today, 07:11 AM
        • SEQadmin2
          From Collection to Sequencing: Why Sample Preparation and Preservation Define Sequencing Data
          by SEQadmin2


          Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.


          The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
          ...
          06-02-2026, 10:05 AM
        • SEQadmin2
          Single-Cell Sequencing at an Inflection Point: Early Impacts of New Platforms and Emerging Trends
          by SEQadmin2


          With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.


          Introduction

          Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...
          05-22-2026, 06:42 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, Yesterday, 06:09 AM
        0 responses
        16 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-09-2026, 11:58 AM
        0 responses
        37 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-05-2026, 10:09 AM
        0 responses
        42 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 06-04-2026, 08:59 AM
        0 responses
        49 views
        0 reactions
        Last Post SEQadmin2  
        Working...