123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <?php
- function chado_feature_form($node, &$form_state) {
- $form = array();
-
-
-
-
-
-
-
-
-
- $feature = null;
- $feature_id = null;
- $uniquename = '';
- $fname = '';
- $feature_type = '';
- $organism_id = '';
- $residues = '';
- $is_obsolete = '';
- $analyses = '';
- $references = '';
- $synonyms = '';
-
-
- if (property_exists($node, 'feature')) {
- $feature = $node->feature;
- $feature = tripal_core_expand_chado_vars($feature, 'field', 'feature.residues');
- $feature_id = $feature->feature_id;
- $uniquename = $feature->uniquename;
- $fname = $feature->name;
- $feature_type = $feature->type_id->name;
- $organism_id = $feature->organism_id->organism_id;
- $residues = $feature->residues;
- $is_obsolete = $feature->is_obsolete;
-
-
- $synonyms = '';
- if(property_exists($node, 'synonyms')) {
- $synonyms = $node->synonyms;
- }
-
-
- if (!$synonyms) {
- $options = array('return_array' => 1);
- $feature = tripal_core_expand_chado_vars($feature, 'table', 'feature_synonym', $options);
- $feature_synonyms = $feature->feature_synonym;
- foreach ($feature_synonyms as $index => $synonym) {
- $synonyms .= $synonym->synonym_id->name . "\n";
- }
- }
- }
-
-
- if (array_key_exists('values', $form_state)) {
- $uniquename = $form_state['values']['uniquename'];
- $fname = $form_state['values']['fname'];
- $feature_type = $form_state['values']['feature_type'];
- $organism_id = $form_state['values']['organism_id'];
- $residues = $form_state['values']['residues'];
- $is_obsolete = $form_state['values']['is_obsolete'];
- $synonyms = $form_state['values']['synonyms'];
- }
-
-
- if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
- $uniquename = $form_state['input']['uniquename'];
- $fname = $form_state['input']['fname'];
- $feature_type = $form_state['input']['feature_type'];
- $organism_id = $form_state['input']['organism_id'];
- $residues = $form_state['input']['residues'];
- $is_obsolete = array_key_exists('is_obsolete', $form_state['input']) ? $form_state['input']['is_obsolete'] : FALSE;
- $synonyms = $form_state['input']['synonyms'];
- }
-
- $form['feature'] = array(
- '#type' => 'value',
- '#value' => $feature
- );
-
-
- $form['feature_id'] = array(
- '#type' => 'value',
- '#value' => $feature_id,
- );
- $form['fname']= array(
- '#type' => 'textfield',
- '#title' => t('Feature Name'),
- '#required' => TRUE,
- '#default_value' => $fname,
- '#description' => t('Enter the name used by humans to refer to this feature.'),
- '#maxlength' => 255
- );
- $form['uniquename']= array(
- '#type' => 'textfield',
- '#title' => t('Unique Feature Name'),
- '#required' => TRUE,
- '#default_value' => $uniquename,
- '#description' => t('Enter a unique name for this feature. This name must be unique for the organism and feature type.'),
- '#maxlength' => 255
- );
-
- $values = array('name' => 'sequence');
- $cv = tripal_core_chado_select('cv', array('cv_id'), $values);
- $cv_id = $cv[0]->cv_id;
- $form['feature_type'] = array(
- '#title' => t('Feature Type'),
- '#type' => 'textfield',
- '#description' => t("Choose the feature type."),
- '#required' => TRUE,
- '#default_value' => $feature_type,
- '#autocomplete_path' => "admin/tripal/tripal_cv/cvterm/auto_name/$cv_id",
- );
-
- $sql = "SELECT * FROM {Organism} ORDER BY genus, species";
- $org_rset = chado_query($sql);
- $organisms = array();
- $organisms[''] = '';
- while ($organism = $org_rset->fetchObject()) {
- $organisms[$organism->organism_id] = "$organism->genus $organism->species ($organism->common_name)";
- }
- $form['organism_id'] = array(
- '#title' => t('Organism'),
- '#type' => t('select'),
- '#description' => t("Choose the organism with which this feature is associated"),
- '#required' => TRUE,
- '#default_value' => $organism_id,
- '#options' => $organisms,
- );
-
- $syn_text = '';
- if ($synonyms) {
- if (is_array($synonyms)) {
- foreach ($synonyms as $synonym) {
- $syn_text .= "$synonym->name\n";
- }
- }
- else {
- $syn_text = $synonyms;
- }
- }
- $form['synonyms']= array(
- '#type' => 'textarea',
- '#title' => t('Synonyms'),
- '#required' => FALSE,
- '#default_value' => $syn_text,
- '#description' => t('Enter alternate names (synonmys) for this feature to help in searching and identification. You may enter as many alternate names as needed each on different lines.'),
- );
- $form['residues']= array(
- '#type' => 'textarea',
- '#title' => t('Residues'),
- '#required' => FALSE,
- '#default_value' => $residues,
- '#description' => t('Enter the nucelotide sequences for this feature'),
- );
- $checked = '';
- if ($is_obsolete == 't') {
- $checked = '1';
- }
- $form['is_obsolete']= array(
- '#type' => 'checkbox',
- '#title' => t('Is Obsolete'),
- '#required' => FALSE,
- '#default_value' => $checked,
- '#description' => t('Check this box if this sequence should be retired'),
- );
- return $form;
- }
- function chado_feature_validate($node, $form, &$form_state) {
-
- $node->uniquename = trim($node->uniquename);
- $node->fname = trim($node->fname);
- $node->feature_type = trim($node->feature_type);
- $node->residues = trim($node->residues);
-
-
- if($node->op == 'Delete') {
- return;
- }
-
-
-
- if (is_null($node->nid) and property_exists($node, 'feature_id') and $node->feature_id != 0) {
- return;
- }
-
- if (property_exists($node, 'nid')) {
-
-
- $type = tripal_cv_get_cvterm_by_name($node->feature_type, NULL, 'sequence');
- if (!$type) {
- form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
- }
-
-
-
-
- if (property_exists($node, 'feature_id') and $node->feature_id != 0) {
- $sql = "
- SELECT *
- FROM {feature} F
- INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
- WHERE
- F.uniquename = :uname AND
- F.organism_id = :organism_id AND
- CVT.name = :cvtname AND
- NOT f.feature_id = :feature_id
- ";
- $args = array(':uname' => $node->uniquename, ':organism_id' => $node->organism_id,
- ':cvtname' => $node->feature_type, ':feature_id' => $node->feature_id);
- $result = chado_query($sql, $args)->fetchObject();
- if ($result) {
- form_set_error('uniquename', t("Feature update cannot proceed. The feature name '$node->uniquename' is not unique for this organism. Please provide a unique name for this feature."));
- }
- }
- }
-
- else {
-
-
- $type = tripal_cv_get_cvterm_by_name($node->feature_type, NULL, 'sequence');
- if (!$type) {
- form_set_error('feature_type', t("The feature type is not a valid name from the Sequence Ontology."));
- }
-
-
-
- $sql = "
- SELECT *
- FROM {feature} F
- INNER JOIN {cvterm} CVT ON F.type_id = CVT.cvterm_id
- WHERE
- F.uniquename = :name AND
- F.organism_id = :organism_id AND
- CVT.name = :cvtname
- ";
- $args = array(':name' => $node->uniquename, ':organism_id' => $node->organism_id, ':cvtname' => $node->feature_type);
- $result = chado_query($sql, $args)->fetchObject();
- if ($result) {
- form_set_error('uniquename', t("Feature insert cannot proceed. The feature name '$node->uniquename' already exists for this organism. Please provide a unique name for this feature."));
- }
- }
- }
|