LibiadaWeb.Models.Repositories.Sequences.DnaSequenceRepository.Insert C# (CSharp) Method

Insert() public method

The insert.
public Insert ( DnaSequence sequence, long alphabet, int building ) : void
sequence DnaSequence /// The sequence. ///
alphabet long /// The alphabet. ///
building int /// The building. ///
return void
        public void Insert(DnaSequence sequence, long[] alphabet, int[] building)
        {
            Create(ToCommonSequence(sequence), false, alphabet, building);
        }