Write a Perl program that asks a user for a gene ID or accession number and returns the sequence that corresponds to that gene. Use a hash to accomplish this. Get the genes and their sequences from NCBI and create the hash so that the key = gene ID and value = sequence. Handle the case where the gene ID is not found in the hash
Need help on how to start