I can find your acc in the refGene table
$ mysql --user=genome --host=genome-mysql.cse.ucsc.edu -A -D hg19 -e 'select name,name2,chrom,txStart,txEnd from refGene where name="NM_000163"\G'
*************************** 1. row ***************************
name: NM_000163
name2: GHR
chrom: chr5
txStart: 42423876
txEnd: 42721980
You can use Ensembl BioMart for this:
Step 1:
Step 2:
Step 3:
Step 4:
For your example this gives me:
RefSeq mRNA HGNC symbol
NM_000163 GHR
Hope this helps.
Download the sequences and parse the files to get the gene names.
http://biostar.stackexchange.com/questions/13396/fetch-many-files-with-accession-number-output-file-format-is-coding-sequences-in/13402#13402
This piece of code will fetch the gene name:
my @tags=qw/gene/;
my ($feat_object)=@cds_features;
my ($gene_name)=map{$feat_object->get_tag_values($_);}@tags;