Package com.google.api.services.genomics.model

Examples of com.google.api.services.genomics.model.SearchReferencesRequest


      description = "The ID of a reference sets you want to get references for.")
  public String referenceSetId;

  @Override
  public void handleRequest(Genomics genomics) throws IOException {
    SearchReferencesRequest request = new SearchReferencesRequest()
        .setPageSize(getMaxResults());
    if (referenceSetId != null) {
      request.setReferenceSetId(referenceSetId);
    }

    printResults(Paginator.References.create(genomics), request);
  }
View Full Code Here

TOP

Related Classes of com.google.api.services.genomics.model.SearchReferencesRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.