Skip to content

Instantly share code, notes, and snippets.

@sorsaffari
Created November 2, 2018 16:49
Show Gist options
  • Save sorsaffari/514beaa9ccf38cbc6f4949f4909c67d6 to your computer and use it in GitHub Desktop.
Save sorsaffari/514beaa9ccf38cbc6f4949f4909c67d6 to your computer and use it in GitHub Desktop.
Protein Structure Prediction: Implied sequence-function-mapping rule
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