natix.SimilaritySearch.KnrSeqSearch.Load C# (CSharp) Méthode

Load() public méthode

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
Résultat void
        public override void Load(BinaryReader Input)
        {
            base.Load(Input);
            this.K = Input.ReadInt32 ();
            this.MAXCAND = Input.ReadInt32 ();
            this.R = IndexGenericIO.Load(Input);
            this.SEQ = GenericIO<Sequence>.Load(Input);
            Console.WriteLine ("=== Loading KnrSeqSearch {0} DB.Count: {1}, R: {2}, SEQ length: {3}, K: {4}", this, this.DB.Count, this.R, this.SEQ.Count, this.K);
        }