Examples of ExportReadGroupSetsRequest


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

    }

    String readsetNames = Joiner.on(',').join(Lists.transform(readGroupSets, GET_NAME));
    System.out.println("Exporting read group sets " + readsetNames);

    ExportReadGroupSetsRequest request = new ExportReadGroupSetsRequest()
        .setExportUri(exportUri)
        .setReadGroupSetIds(readGroupSetIds)
        .setProjectNumber(projectNumber);
    String jobId = genomics.readgroupsets().export(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.