Created
November 2, 2018 16:49
-
-
Save sorsaffari/514beaa9ccf38cbc6f4949f4909c67d6 to your computer and use it in GitHub Desktop.
Protein Structure Prediction: Implied sequence-function-mapping rule
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
sequence-function-mapping sub relationship, | |
relates mapping-sequence, | |
relates mapped-function; | |
implied-sequence-function-mapping sub rule, | |
when { | |
$seq isa sequence; | |
$struct isa structure; | |
$func isa function; | |
(mapping-sequence: $seq, mapped-structure: $struct) isa sequence-structure-mapping; | |
(mapping-structure: $struct, mapped-function: $func) isa structure-function-mapping; | |
} then { | |
(mapping-sequence: $seq, mapped-function: $func) isa sequence-function-mapping; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment