/// <summary> /// Private Constructor for clone method. /// </summary> /// <param name="other">SequenceSource instance to clone.</param> private SequenceSource(SequenceSource other) { CommonName = other.CommonName; if (other.Organism != null) { Organism = other.Organism.Clone(); } }