stevenrombauts / genes-component
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:nooku-component
Requires
This package is not auto-updated.
Last update: 2025-03-29 18:26:25 UTC
README
The Genes component is a reusable component for Nooku Framework. This is an example!
By installing this component you can easily re-use the functionality its classes offer in your own components.
Installing
You can install this extension using Composer. Add the following requirements to your composer.json
file in your Joomla application's root directory:
{ "require": { "stevenrombauts/genes-component": "dev-master" }, "minimum-stability": "dev" }
Run composer install
to take care of downloading and installing the package.
Examples
Gene entity
Having your entities extend the ComGenesModelEntityGene
class will automatically add support for translating the DNA sequence into a protein sequence. Or call it directly:
$sequence = <<<EOL > A sequence ATGCAGACTGACGATTCTTGGAAACATAATGTGTCGTTTTATACA AATTTGGACTACACCGATAAGGATACCAAAATCAGTGCAGTTTAA EOL; $data = array( 'identifier' => 'C02H7.2', 'title' => 'npr-19', 'sequence' => $sequence ); $entity = KOBjectManager::getInstance()->getObject('com://stevenrombauts/genes.model.entity.gene', array('data' => $data)); echo $entity->protein;
Fasta filter
You can use the FASTA filter to validate and sanitize strings representings nucleotide sequences or peptide sequences.
Example:
$filter = KObjectManager::getInstance()->getObject('com://stevenrombauts/genes.filter.fasta'); $sequence = <<<EOL > LCBO - Prolactin precursor - Bovine ; a sample sequence in FASTA format MDSKGSSQKGSRLLLLLVVSNLLLCQGVVSTPVCPN EMFNEFDQVIPGAKETEPYPVWSGLPSLQTKDED ARYSAFYNLLHCLRRDSSKIDTYLKLLNCRIIYNNNC* EOL; // This one should be valid: echo ($filter->validate($sequence) === true ? "Valid sequence" : "Invalid sequence"); // Sanitizing will remove all characters that don't belong (line-breaks, comments, etc ..): echo $filter->sanitize($sequence);