import jp.dbcls.togows.soap.*;

public class DdbjGetentryGetFastaCdsEntry {

    public static void main(String[] args) {
        try {
            String accession = "AB000100"; 

            TogowsDdbjGetentryService service = new TogowsDdbjGetentryServiceLocator();
            TogowsDdbjGetentryPort stub = service.getTogowsDdbjGetentryPort();

            String result = stub.ddbjGetentryGetFastaCdsEntry(accession);
            System.out.println(result);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
