/// <summary> /// Private constructor for clone method. /// </summary> /// <param name="other">Other MiscStructure instance.</param> private MiscStructure(MiscStructure other) : base(other) { }
/// <summary> /// Validate MiscStructure features /// </summary> /// <param name="nodeName">XML node name</param> /// <param name="genMetadata">GenBank Metadata</param> private void ValidateGenBankMiscStructureFeature(string nodeName, GenBankMetadata genMetadata) { // Get Values from XML node. string expectedLocation = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.Location); string expectedAllele = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.AlleleNode); string featureCount = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.QualifierCount); string expectedDbReference = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.DbReferenceNode); string geneSymbol = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.GeneSymbol); string expectedCitation = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.CitationNode); string expectedExperiment = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.ExperimentNode); string expectedFunction = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.FunctionNode); string expectedGeneSynonym = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.GeneSynonymNode); string expectedInference = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.InferenceNode); string expectedLabel = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.LabelNode); string expectedLocusTag = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.LocusTagNode); string expectedNote = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.Note); string expectedOldLocusTag = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.OldLocusTagNode); string expectedMap = utilityObj.xmlUtil.GetTextValue( nodeName, Constants.GenbankMapNode); List<MiscStructure> miscStrFeatureList = genMetadata.Features.MiscStructures; var locBuilder = new LocationBuilder(); // Create a copy of Misc structure. MiscStructure cloneMiscStr = miscStrFeatureList[0].Clone(); // Validate MiscStructure qualifiers. Assert.AreEqual(miscStrFeatureList.Count.ToString((IFormatProvider) null), featureCount); Assert.IsFalse(string.IsNullOrEmpty(cloneMiscStr.GeneSymbol)); Assert.AreEqual(cloneMiscStr.DatabaseCrossReference[0], expectedDbReference); Assert.AreEqual(miscStrFeatureList[0].Allele, expectedAllele); Assert.AreEqual(miscStrFeatureList[0].Citation[0], expectedCitation); Assert.AreEqual(miscStrFeatureList[0].Experiment[0], expectedExperiment); Assert.AreEqual(miscStrFeatureList[0].GenomicMapPosition, expectedMap); Assert.AreEqual(miscStrFeatureList[0].GeneSynonym[0], expectedGeneSynonym); Assert.AreEqual(miscStrFeatureList[0].Inference[0], expectedInference); Assert.AreEqual(miscStrFeatureList[0].Label, expectedLabel); Assert.AreEqual(locBuilder.GetLocationString( genMetadata.Features.MiscStructures[0].Location), expectedLocation); Assert.AreEqual(miscStrFeatureList[0].Note[0], expectedNote); Assert.AreEqual(miscStrFeatureList[0].OldLocusTag[0], expectedOldLocusTag); Assert.AreEqual(miscStrFeatureList[0].LocusTag[0], expectedLocusTag); Assert.AreEqual(miscStrFeatureList[0].Function[0], expectedFunction); Assert.IsTrue(string.IsNullOrEmpty(miscStrFeatureList[0].StandardName)); // Create a new MiscStructure and validate the same. var miscStructure = new MiscStructure(expectedLocation); var miscStructureWithILoc = new MiscStructure( genMetadata.Features.TransitPeptides[0].Location); // Set qualifiers and validate them. miscStructure.Allele = expectedAllele; miscStructure.GeneSymbol = geneSymbol; miscStructureWithILoc.GenomicMapPosition = expectedMap; Assert.AreEqual(miscStructure.GeneSymbol, geneSymbol); Assert.AreEqual(miscStructure.Allele, expectedAllele); Assert.AreEqual(miscStructureWithILoc.GenomicMapPosition, expectedMap); }