Examples of ExportVariantSetRequest


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

    if (callSetIds != null && !callSetIds.isEmpty()) {
      System.out.println(Joiner.on(',').join(callSetIds));
    }

    // Start the export
    ExportVariantSetRequest request = new ExportVariantSetRequest()
        .setProjectNumber(projectNumber)
        .setCallSetIds(callSetIds)
        .setBigqueryDataset(bigqueryDataset)
        .setBigqueryTable(bigqueryTable);
    String jobId = genomics.variantsets().export(variantSetId, request).execute().getJobId();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.