-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bring repo back on track to have all changes included
- Loading branch information
Showing
19 changed files
with
809 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef RNANUE_FILTERSCORES_HPP | ||
#define RNANUE_FILTERSCORES_HPP | ||
|
||
#include "DataTypes.hpp" | ||
|
||
class Complementarity { | ||
public: | ||
Complementarity(); | ||
~Complementarity(); | ||
|
||
void compute(dtp::DNAVector seq1, dtp::DNAVector seq2); | ||
|
||
private: | ||
double score; | ||
int alignmentLength; | ||
double siteLengthRatio; | ||
int matches; | ||
}; | ||
|
||
class Hybridization { | ||
public: | ||
Hybridization(); | ||
~Hybridization(); | ||
|
||
void compute(dtp::DNAVector seq1, dtp::DNAVector seq2); | ||
|
||
private: | ||
double score; | ||
int alignmentLength; | ||
double siteLengthRatio; | ||
int matches; | ||
}; | ||
|
||
|
||
class FilterScores { | ||
public: | ||
FilterScores(); | ||
~FilterScores(); | ||
|
||
}; | ||
|
||
#endif //RNANUE_FILTERSCORES_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.