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

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


    Mockito.when(datasets.get("abc")).thenReturn(datasetGet);
    Mockito.when(datasetGet.execute()).thenReturn(
        new Dataset().setId("abc").setName("1kg"));

    Mockito.when(readsets.call(new CallReadGroupSetsRequest()
        .setDatasetId("abc").setSourceUris(Lists.newArrayList("uri1"))))
        .thenReturn(readsetCall);
    Mockito.when(readsetCall.execute()).thenReturn(
        new CallReadGroupSetsResponse().setJobId("8675309"));
View Full Code Here


    }
    System.out.println("Saving called variants into: " + dataset.getName());

    // Start the job
    Genomics.Readgroupsets.Call req = genomics.readgroupsets().call(
        new CallReadGroupSetsRequest()
            .setDatasetId(datasetId)
            .setReadGroupSetIds(readGroupSetIds)
            .setSourceUris(bamFiles));
    String jobId = req.execute().getJobId();
View Full Code Here

TOP

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

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.