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

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


        .thenReturn(callsetSearch);
    Mockito.when(callsetSearch.execute()).thenReturn(
        new SearchCallSetsResponse().setCallSets(Lists.newArrayList(new CallSet().setId("id1"))),
        new SearchCallSetsResponse() /* No callset results for c2 */);

    Mockito.when(variants.search(new SearchVariantsRequest()
        .setVariantSetIds(Lists.newArrayList("dataset"))
        .setReferenceName("chr1")
        .setStart(1L)
        .setEnd(5L)
        .setCallSetIds(Lists.newArrayList("id1"))
View Full Code Here

TOP

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

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.