Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Biojava help Using Biojava With little modification to readFastaDNA.java, , please develop a Java program to read a GenBank format DNA sequence file (GenBank_seq.gb )

Biojava help

Using Biojava With little modification to readFastaDNA.java, , please develop a Java program to read a GenBank format DNA sequence file (GenBank_seq.gb ) founf at this link (http://polaris.umuc.edu/~sgao/BIFS618/Homework/GenBank_seq.gb) and extract the GenBank accession number, the length of the sequence, and the description of the sequence (all printed on the first line) and sequence itself to be printed as a separate line

Java program with Biojava packages read FastaDNA.java ( hyperlink wont work) import org.biojava.bio.BioException; import org.biojavax.bio.db.ncbi.GenbankRichSequenceDB; import org.biojavax.bio.seq.RichSequence; import java.util.Scanner; public class fetchGenBank { public static void main(String[] args) { RichSequence rs = null; GenbankRichSequenceDB grsdb = new GenbankRichSequenceDB(); Scanner input = new Scanner(System.in); try{ // get data via GenBank accession number or gi number System.out.println("Enter a GenBank accession number or gi number: "); String id = input.nextLine(); rs = grsdb.getRichSequence(id); System.out.println(rs.getName()+" | "+rs.getDescription()); System.out.println(rs.seqString()); } catch(BioException be){ be.printStackTrace(); System.exit(-1); } } } 

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Web Database Development Step By Step

Authors: Jim Buyens

1st Edition

0735609667, 978-0735609662

More Books

Students also viewed these Databases questions

Question

=+ Are job expectations set out for the coming year?

Answered: 1 week ago

Question

Define Administration?

Answered: 1 week ago

Question

Define Decision making

Answered: 1 week ago

Question

What are the major social responsibilities of business managers ?

Answered: 1 week ago

Question

What are the skills of management ?

Answered: 1 week ago

Question

LO14.2 Discuss how game theory relates to oligopoly.

Answered: 1 week ago