Пример #1
0
 //--------------------------------------------------------------------------------------------------------------------
 public RegulatoryMotifPerfomance(int size, string inputData, string algorithm, int numberOfSequence,
                                  string sequenceLengthes, int motifLength, AlgorythmParameters algorythmParameters) : base(size, inputData, algorithm)
 {
     _numberOfSequence    = numberOfSequence;
     _sequenceLengthes    = sequenceLengthes;
     _motifLength         = motifLength;
     _algorythmParameters = algorythmParameters;
 }
Пример #2
0
 //--------------------------------------------------------------------------------------------------------------------
 public void CreateStatistics(string inputData, string algorithm, AlgorythmParameters algorythmParameters)
 {
     _currentDNAMappingPerfomance = new DNAMappingPerfomance(_size, _limit, inputData, algorithm, algorythmParameters);
     _dnaMappingPerfomances.Add(_currentDNAMappingPerfomance);
 }
Пример #3
0
 //--------------------------------------------------------------------------------------------------------------------
 public void CreateStatistics(string inputData, string algorithm, AlgorythmParameters algorythmParameters)
 {
 }
Пример #4
0
 //--------------------------------------------------------------------------------------
 public DNAMappingPerfomance(int size, int limit, string inputData, string algorithm, AlgorythmParameters algorythmParameters) : base(size, inputData, algorithm)
 {
     _algorythmParameters = algorythmParameters;
     _limit = limit;
 }
 //--------------------------------------------------------------------------------------------------------------------
 public void CreateStatistics(int size, string inputData, string algorithm, int numberOfSequence,
                              string sequenceLengthes, int motifLength, AlgorythmParameters algorythmParameters)
 {
     _currentRegulatoryMotifPerfomance = new RegulatoryMotifPerfomance(size, inputData, algorithm, numberOfSequence, sequenceLengthes, motifLength, algorythmParameters);
     _regulatoryMotifPerfomances.Add(_currentRegulatoryMotifPerfomance);
 }
 //--------------------------------------------------------------------------------------------------------------------
 public void CreateStatistics(int size, string inputData, string algorithm, int numberOfSequence,
                              string sequenceLengthes, int motifLength, AlgorythmParameters algorythmParameters)
 {
 }