This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Features in GenBank files

Hi,

I'm trying to retrieve GenBank files for genes with older assembly version (GRCh37) using eutils Bash

For example: efetch -db nucleotide -id NC_000012.11 -seq_start 53700940 -seq_stop 53715954 -format gb and I noticed in theFEATURE section in the .gb file it does not have features such as mRNA, CDS region. It only contains source, does anyone know how can I retrieve mRNA, CDS altogether with FEATURES?

Thanks very much!

gene mrna genbank

1 answer

You can use -format gbwithparts for that.

efetch -db nucleotide -id NC_000012.11 -seq_start 53700940 -seq_stop 53715954 -format gbwithparts

Log in to answer this question.