コード例 #1
0
        internal static PlannedRun CreatePlannedRun(IBaseSpaceClient client, IEnumerable <PlannedRunPoolMapping> poolMappings, int numCyclesRead1, string name = null,
                                                    string platformName = null, string analysisWorkFlowType = null)
        {
            var plannedRun = client.CreatePlannedRun(new CreatePlannedRunRequest(
                                                         poolMappings,
                                                         numCyclesRead1,
                                                         name ?? string.Format("Run-SDK-{0}", StringHelpers.RandomAlphanumericString(5)),
                                                         platformName ?? "NextSeq",
                                                         analysisWorkFlowType ?? "HiSeqFastQ",
                                                         "None"
                                                         )).Response;

            Assert.NotNull(plannedRun);
            return(plannedRun);
        }
コード例 #2
0
        internal static PlannedRun CreatePlannedRun(IBaseSpaceClient client, IEnumerable<PlannedRunPoolMapping> poolMappings, int numCyclesRead1, string name=null, 
            string platformName=null, string analysisWorkFlowType=null)
        {
            var plannedRun = client.CreatePlannedRun(new CreatePlannedRunRequest(
                                poolMappings,
                                numCyclesRead1,
                                name ?? string.Format("Run-SDK-{0}", StringHelpers.RandomAlphanumericString(5)),
                                platformName ?? "NextSeq",
                                analysisWorkFlowType ?? "HiSeqFastQ",
                                "None"
                                )).Response;

            Assert.NotNull(plannedRun);
            return plannedRun;
        }