コード例 #1
0
        public override ParsingResult <IModeRunner> Parse(SuccessfulResultCollection parseInput)
        {
            CommonOptions        commonOptions        = parseInput.Get(CommonOptionsParser);
            SmallPedigreeOptions smallPedigreeOptions = parseInput.Get(SmallPedigreeOptionsParser);

            return(ParsingResult <IModeRunner> .SuccessfulResult(new SmallPedigreeWgsRunner(commonOptions, smallPedigreeOptions)));
        }
コード例 #2
0
 public SmallPedigreeInput(CommonOptions commonOptions, SmallPedigreeOptions smallPedigreeOptions)
 {
     CommonOptions        = commonOptions;
     SmallPedigreeOptions = smallPedigreeOptions;
 }