1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207 |
- <?php
- function tripal_feature_gff3_load_form() {
- $form['gff_file']= array(
- '#type' => 'textfield',
- '#title' => t('GFF3 File'),
- '#description' => t('Please enter the full system path for the GFF file, or a path within the Drupal
- installation (e.g. /sites/default/files/xyz.gff). The path must be accessible to the
- server on which this Drupal instance is running.'),
- '#required' => TRUE,
- '#weight' => 1
- );
-
- $sql = "SELECT * FROM {organism} ORDER BY genus, species";
- $previous_db = tripal_db_set_active('chado');
- $org_rset = db_query($sql);
- tripal_db_set_active($previous_db);
- $organisms = array();
- $organisms[''] = '';
- while ($organism = db_fetch_object($org_rset)) {
- $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 to which these sequences are associated"),
- '#required' => TRUE,
- '#options' => $organisms,
- );
- $form['import_options'] = array(
- '#type' => 'fieldset',
- '#title' => t('Import Options'),
- '#weight' => 6,
- '#collapsed' => TRUE
- );
- $form['import_options']['add_only']= array(
- '#type' => 'checkbox',
- '#title' => t('Import only new features'),
- '#required' => FALSE,
- '#description' => t('The job will skip features in the GFF file that already
- exist in the database and import only new features.'),
- '#weight' => 2
- );
- $form['import_options']['update']= array(
- '#type' => 'checkbox',
- '#title' => t('Import all and update'),
- '#required' => FALSE,
- '#default_value' => 'checked',
- '#description' => t('Existing features will be updated and new features will be added. Attributes
- for a feature that are not present in the GFF but which are present in the
- database will not be altered.'),
- '#weight' => 3
- );
- $form['import_options']['refresh']= array(
- '#type' => 'checkbox',
- '#title' => t('Import all and replace'),
- '#required' => FALSE,
- '#description' => t('Existing features will be updated and feature properties not
- present in the GFF file will be removed.'),
- '#weight' => 4
- );
- $form['import_options']['remove']= array(
- '#type' => 'checkbox',
- '#title' => t('Delete features'),
- '#required' => FALSE,
- '#description' => t('Features present in the GFF file that exist in the database
- will be removed rather than imported'),
- '#weight' => 5
- );
- $form['analysis'] = array(
- '#type' => 'fieldset',
- '#title' => t('Analysis Used to Derive Features'),
- '#weight' => 6,
- '#collapsed' => TRUE
- );
- $form['analysis']['desc'] = array(
- '#type' => 'markup',
- '#value' => t("Why specify an analysis for a data load? All data comes
- from some place, even if downloaded from Genbank. By specifying
- analysis details for all data uploads, it allows an end user to reproduce the
- data set, but at least indicates the source of the data."),
- );
-
- $sql = "SELECT * FROM {analysis} ORDER BY name";
- $previous_db = tripal_db_set_active('chado');
- $org_rset = db_query($sql);
- tripal_db_set_active($previous_db);
- $analyses = array();
- $analyses[''] = '';
- while ($analysis = db_fetch_object($org_rset)) {
- $analyses[$analysis->analysis_id] = "$analysis->name ($analysis->program $analysis->programversion, $analysis->sourcename)";
- }
- $form['analysis']['analysis_id'] = array(
- '#title' => t('Analysis'),
- '#type' => t('select'),
- '#description' => t("Choose the analysis to which these features are associated"),
- '#required' => TRUE,
- '#options' => $analyses,
- );
- $form['button'] = array(
- '#type' => 'submit',
- '#value' => t('Import GFF3 file'),
- '#weight' => 10,
- );
- return $form;
- }
- function tripal_feature_gff3_load_form_validate($form, &$form_state) {
- $gff_file = $form_state['values']['gff_file'];
- $organism_id = $form_state['values']['organism_id'];
- $add_only = $form_state['values']['add_only'];
- $update = $form_state['values']['update'];
- $refresh = $form_state['values']['refresh'];
- $remove = $form_state['values']['remove'];
-
- $dfile = $_SERVER['DOCUMENT_ROOT'] . base_path() . $gff_file;
- if (!file_exists($dfile)) {
-
-
- $dfile = $gff_file;
- }
- if (!file_exists($dfile)) {
- form_set_error('gff_file', t("Cannot find the file on the system. Check that the file exists or that the web server has permissions to read the file."));
- }
- if (($add_only AND ($update OR $refresh OR $remove)) OR
- ($update AND ($add_only OR $refresh OR $remove)) OR
- ($refresh AND ($update OR $add_only OR $remove)) OR
- ($remove AND ($update OR $refresh OR $add_only))) {
- form_set_error('add_only', t("Please select only one checkbox from the import options section"));
- }
- }
- function tripal_feature_gff3_load_form_submit($form, &$form_state) {
- global $user;
- $gff_file = $form_state['values']['gff_file'];
- $organism_id = $form_state['values']['organism_id'];
- $add_only = $form_state['values']['add_only'];
- $update = $form_state['values']['update'];
- $refresh = $form_state['values']['refresh'];
- $remove = $form_state['values']['remove'];
- $analysis_id = $form_state['values']['analysis_id'];
- $args = array($gff_file, $organism_id, $analysis_id, $add_only, $update, $refresh, $remove);
- $type = '';
- if ($add_only) {
- $type = 'import only new features';
- }
- if ($update) {
- $type = 'import all and update';
- }
- if ($refresh) {
- $type = 'import all and replace';
- }
- if ($remove) {
- $type = 'delete features';
- }
- tripal_add_job("$type GFF3 file $gff_file", 'tripal_feature',
- 'tripal_feature_load_gff3', $args, $user->uid);
- return '';
- }
- function tripal_feature_load_gff3($gff_file, $organism_id, $analysis_id, $add_only =0, $update = 0, $refresh = 0, $remove = 0, $job = NULL) {
-
-
- $gff_features = array();
-
- $dfile = $_SERVER['DOCUMENT_ROOT'] . base_path() . $gff_file;
- if (!file_exists($dfile)) {
-
-
- $dfile = $gff_file;
- }
- if (!file_exists($dfile)) {
- print "ERROR: cannot find the file: $dfile\n";
- return 0;
- }
- $previous_db = tripal_db_set_active('chado');
- print "Opening $gff_file\n";
-
- $fh = fopen($dfile, 'r');
- if (!$fh) {
- print "ERROR: cannot open file: $dfile\n";
- return 0;
- }
- $filesize = filesize($dfile);
-
-
- $sql = "SELECT * FROM cv WHERE name = '%s'";
- $cv = db_fetch_object(db_query($sql, 'sequence'));
- if (!$cv) {
- print "ERROR: cannot find the 'sequence' ontology\n";
- return '';
- }
-
- $sql = "SELECT * FROM organism WHERE organism_id = %d";
- $organism = db_fetch_object(db_query($sql, $organism_id));
- $interval = intval($filesize * 0.01);
- if ($interval == 0) {
- $interval = 1;
- }
- $in_fasta = 0;
-
- $line_num = 0;
- $num_read = 0;
- while ($line = fgets($fh)) {
- $line_num++;
- $num_read += drupal_strlen($line);
-
- if ($job and $num_read % $interval == 0) {
- tripal_job_set_progress($job, intval(($num_read/$filesize)*100));
- }
-
-
- if (preg_match('/^##FASTA/i', $line)) {
- $in_fasta = 1;
- break;
- }
-
- if (preg_match('/^#/', $line)) {
- continue;
- }
-
- if (preg_match('/^\s*$/', $line)) {
- continue;
- }
-
-
-
- $cols = explode("\t", $line);
- if (sizeof($cols) != 9) {
- print "ERROR: improper number of columns on line $line_num\n";
- print_r($cols);
- return '';
- }
-
- $landmark = $cols[0];
- $source = $cols[1];
- $type = $cols[2];
- $start = $cols[3];
- $end = $cols[4];
- $score = $cols[5];
- $strand = $cols[6];
- $phase = $cols[7];
- $attrs = explode(";", $cols[8]);
-
-
- $fmin = $start - 1;
- $fmax = $end;
- if ($end < $start) {
- $fmin = $end - 1;
- $fmax = $start;
- }
-
- if (strcmp($strand, '.')==0) {
- $strand = 0;
- }
- elseif (strcmp($strand, '+')==0) {
- $strand = 1;
- }
- elseif (strcmp($strand, '-')==0) {
- $strand = -1;
- }
- if (strcmp($phase, '.')==0) {
- $phase = '';
- }
-
- $cvtermsql = "SELECT CVT.cvterm_id, CVT.cv_id, CVT.name, CVT.definition,
- CVT.dbxref_id, CVT.is_obsolete, CVT.is_relationshiptype
- FROM {cvterm} CVT
- INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
- LEFT JOIN {cvtermsynonym} CVTS on CVTS.cvterm_id = CVT.cvterm_id
- WHERE CV.cv_id = %d and (CVT.name = '%s' or CVTS.synonym = '%s')";
- $cvterm = db_fetch_object(db_query($cvtermsql, $cv->cv_id, $type, $type));
- if (!$cvterm) {
- print "ERROR: cannot find ontology term '$type' on line $line_num.\n";
- return '';
- }
-
- $tags = array();
- $attr_name = '';
- $attr_uniquename = '';
- $attr_residue_info = '';
- $attr_locgroup = 0;
- $attr_fmin_partial = 'f';
- $attr_fmax_partial = 'f';
- $attr_is_obsolete = 'f';
- $attr_is_analysis = 'f';
- $attr_others = '';
- $residues = '';
- foreach ($attrs as $attr) {
- $attr = rtrim($attr);
- $attr = ltrim($attr);
- if (strcmp($attr, '')==0) {
- continue;
- }
- if (!preg_match('/^[^\=]+\=[^\=]+$/', $attr)) {
- print "ERROR: attribute is not correctly formatted on line $line_num: $attr\n";
- return '';
- }
-
- $tag = explode("=", $attr);
-
- $tags[$tag[0]] = explode(",", $tag[1]);
- if (strcmp($tag[0], 'ID')==0) {
- $attr_uniquename = $tag[1];
- }
- elseif (strcmp($tag[0], 'Name')==0) {
- $attr_name = $tag[1];
- }
-
- elseif (strcmp($tag[0], 'Alias')!=0 and strcmp($tag[0], 'Parent')!=0 and
- strcmp($tag[0], 'Target')!=0 and strcmp($tag[0], 'Gap')!=0 and
- strcmp($tag[0], 'Derives_from')!=0 and strcmp($tag[0], 'Note')!=0 and
- strcmp($tag[0], 'Dbxref')!=0 and strcmp($tag[0], 'Ontology_term')!=0 and
- strcmp($tag[0], 'Is_circular')!=0) {
- $attr_others[$tag[0]] = $tag[1];
- }
- }
-
- if (!$attr_uniquename and !$attr_name) {
- if (array_key_exists('Parent', $tags)) {
- $attr_uniquename = $tags['Parent'][0] . "-$type-$landmark:$fmin..$fmax";
- }
- else {
- print "ERROR: cannot generate a uniquename for feature on line $line_num\n";
- exit;
- }
- $attr_name = $attr_uniquename;
- }
-
- if (strcmp($attr_name, '')==0) {
- $attr_name = $attr_uniquename;
- }
-
-
- if (!$attr_uniquename) {
- $attr_uniquename = $attr_name;
- }
-
-
-
-
-
- if (strcmp($landmark, $attr_uniquename)!=0) {
- $feature_sql = "SELECT count(*) as num_landmarks
- FROM {feature}
- WHERE organism_id = %d and uniquename = '%s'";
- $count = db_fetch_object(db_query($feature_sql, $organism_id, $landmark));
- if (!$count or $count->num_landmarks == 0) {
- print "ERROR: the landmark '$landmark' cannot be found for this organism. ".
- "Please add the landmark and then retry the import of this GFF3 ".
- "file.\n";
- return '';
- }
- if ($count->num_landmarks > 1) {
- print "ERROR: the landmark '$landmark' is not unique for this organism. ".
- "The features cannot be associated.\n";
- return '';
- }
- }
-
-
- if ($remove or $refresh) {
- print "Removing feature '$attr_uniquename'\n";
- $sql = "DELETE FROM {feature}
- WHERE organism_id = %d and uniquename = '%s' and type_id = %d";
- $result = db_query($sql, $organism->organism_id, $attr_uniquename, $cvterm->cvterm_id);
- if (!$result) {
- print "ERROR: cannot delete feature $attr_uniquename\n";
- }
- $feature = 0;
- }
-
- if ($update or $refresh or $add_only) {
-
- print "line $line_num, " . intval(($num_read/$filesize)*100) . "%. ";
- $feature = tripal_feature_load_gff3_feature($organism, $analysis_id, $cvterm,
- $attr_uniquename, $attr_name, $residues, $attr_is_analysis,
- $attr_is_obsolete, $add_only, $score);
-
-
- $gff_features[$feature->uniquename]['type'] = $type;
- $gff_features[$feature->uniquename]['strand'] = $strand;
- if ($feature) {
-
-
- if (strcmp($landmark, $attr_uniquename)!=0) {
- tripal_feature_load_gff3_featureloc($feature, $organism,
- $landmark, $fmin, $fmax, $strand, $phase, $attr_fmin_partial,
- $attr_fmax_partial, $attr_residue_info, $attr_locgroup);
- }
-
- if (array_key_exists('Alias', $tags)) {
- tripal_feature_load_gff3_alias($feature, $tags['Alias']);
- }
-
- if (array_key_exists('Dbxref', $tags)) {
- tripal_feature_load_gff3_dbxref($feature, $tags['Dbxref']);
- }
-
- if (array_key_exists('Ontology_term', $tags)) {
- tripal_feature_load_gff3_ontology($feature, $tags['Ontology_term']);
- }
-
- if (array_key_exists('Parent', $tags)) {
- tripal_feature_load_gff3_parents($feature, $cvterm, $tags['Parent'], $gff_features, $organism_id, $fmin);
- }
-
- if (array_key_exists('Target', $tags)) {
- $target = explode(" ", $tags['Target'][0]);
- $target_feature = $target[0];
- $target_start = $target[1];
- $target_end = $target[2];
- $target_dir = $target[3];
-
- tripal_feature_load_gff3_featureloc($feature, $organism,
- $target_feature, $target_start, $target_end, $strand, $phase, $attr_fmin_partial,
- $attr_fmax_partial, $attr_residue_info, $attr_locgroup);
- }
-
- if (array_key_exists('Gap', $tags)) {
- tripal_feature_load_gff3_property($feature, 'Gap', $tags['Gap'][0]);
- }
-
- if (array_key_exists('Note', $tags)) {
- tripal_feature_load_gff3_property($feature, 'Note', $tags['Note'][0]);
- }
-
- if (array_key_exists('Derives_from', $tags)) {
- tripal_feature_load_gff3_derives_from($feature, $tags['Derives_from'][0], $gff_features, $organism);
- }
-
- $source_ref = array('GFF_source:' . $source);
- tripal_feature_load_gff3_dbxref($feature, $source_ref);
-
- if ($attr_others) {
- foreach ($attr_others as $property => $value) {
- tripal_feature_load_gff3_property($feature, $property, $value);
- }
- }
- }
- }
- }
-
-
-
-
- foreach ($gff_features as $parent => $details) {
-
- if ($details['children']) {
-
- $values = array(
- 'uniquename' => $parent,
- 'type_id' => array(
- 'cv_id' => array(
- 'name' => 'sequence'
- ),
- 'name' => $details['type'],
- ),
- 'organism_id' => $organism->organism_id,
- );
- $pfeature = tripal_core_chado_select('feature', array('*'), $values);
-
-
- if ($details['strand'] == -1) {
- arsort($details['children']);
- }
- else {
- asort($details['children']);
- }
-
- $rank = 1;
- print "Updating child ranks for $parent (" . $details['type'] . ")\n";
- foreach ($details['children'] as $kfeature_id => $kfmin) {
- $match = array(
- 'object_id' => $pfeature[0]->feature_id,
- 'subject_id' => $kfeature_id,
- 'type_id' => array(
- 'cv_id' => array(
- 'name' => 'relationship'
- ),
- 'name' => 'part_of',
- ),
- );
- $values = array(
- 'rank' => $rank,
- );
- tripal_core_chado_update('feature_relationship', $match, $values);
- $rank++;
- }
- }
- }
- tripal_db_set_active($previous_db);
- return '';
- }
- function tripal_feature_load_gff3_derives_from($feature, $subject, $gff_features, $organism) {
-
- $match = array(
- 'organism_id' => $organism->organism_id,
- 'uniquename' => $subject,
- 'type_id' => array(
- 'name' => $gff_features[$subject]['type'],
- 'cv_id' => array(
- 'name' => 'sequence'
- ),
- ),
- );
- $sfeature = tripal_core_chado_select('feature', array('*'), $match);
- if (count($sfeature)==0) {
- print "ERROR: could not add 'Derives_from' relationship for $feature->uniquename and $subject. Subject feature, '$subject', cannot be found\n";
- return;
- }
-
- $values = array(
- 'object_id' => $sfeature[0]->feature_id,
- 'subject_id' => $feature->feature_id,
- 'type_id' => array(
- 'cv_id' => array(
- 'name' => 'relationship'
- ),
- 'name' => 'derives_from',
- ),
- 'rank' => 0
- );
- $rel = tripal_core_chado_select('feature_relationship', array('*'), $values);
- if (count($rel) > 0) {
- print " Relationship already exists: $feature->uniquename derives_from $subject\n";
- return;
- }
-
- $ret = tripal_core_chado_insert('feature_relationship', $values);
- if (!$ret) {
- print "ERROR: could not add 'Derives_from' relationship for $feature->uniquename and $subject\n";
- }
- else {
- print " Added relationship: $feature->uniquename derives_from $subject\n";
- }
- }
- function tripal_feature_load_gff3_parents($feature, $cvterm, $parents, &$gff_features, $organism_id, $fmin) {
- $uname = $feature->uniquename;
- $type = $cvterm->name;
- $rel_type = 'part_of';
-
- $cvtermsql = "SELECT CVT.cvterm_id
- FROM {cvterm} CVT
- INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
- LEFT JOIN {cvtermsynonym} CVTS on CVTS.cvterm_id = CVT.cvterm_id
- WHERE cv.name = '%s' and (CVT.name = '%s' or CVTS.synonym = '%s')";
- $feature_sql = "SELECT * FROM {feature}
- WHERE organism_id = %d and uniquename = '%s' and type_id = %d";
-
- foreach ($parents as $parent) {
- $parent_type = $gff_features[$parent]['type'];
-
- $parentcvterm = db_fetch_object(db_query($cvtermsql, 'sequence', $parent_type, $parent_type));
- $relcvterm = db_fetch_object(db_query($cvtermsql, 'relationship', $rel_type, $rel_type));
- $parent_feature = db_fetch_object(db_query($feature_sql, $organism_id, $parent, $parentcvterm->cvterm_id));
-
-
-
- $gff_features[$parent]['children'][$feature->feature_id] = $fmin;
-
- if ($parent_feature) {
-
- $sql = "SELECT * FROM {feature_relationship} WHERE subject_id = %d and object_id = %d and type_id = %d";
- $rel = db_fetch_object(db_query($sql, $feature->feature_id, $parent_feature->feature_id, $relcvterm->cvterm_id));
- if ($rel) {
- print " Relationship already exists, skipping '$uname' ($type) $rel_type '$parent' ($parent_type)\n";
- }
- else {
-
- $sql = "INSERT INTO {feature_relationship} (subject_id,object_id,type_id)
- VALUES (%d,%d,%d)";
- $result = db_query($sql, $feature->feature_id, $parent_feature->feature_id, $relcvterm->cvterm_id);
- if (!$result) {
- print "WARNING: failed to insert feature relationship '$uname' ($type) $rel_type '$parent' ($parent_type)\n";
- }
- else {
- print " Inserted relationship relationship: '$uname' ($type) $rel_type '$parent' ($parent_type)\n";
- }
- }
- }
- else {
- print "WARNING: cannot establish relationship '$uname' ($type) $rel_type '$parent' ($parent_type): Cannot find the parent\n";
- }
- }
- }
- function tripal_feature_load_gff3_dbxref($feature, $dbxrefs) {
-
- foreach ($dbxrefs as $dbxref) {
-
- $ref = explode(":", $dbxref);
- $dbname = $ref[0];
- $accession = $ref[1];
-
-
-
-
- $db = tripal_core_chado_select('db', array('db_id'), array('name' => "DB:$dbname"));
- if (sizeof($db) == 0) {
- $db = tripal_core_chado_select('db', array('db_id'), array('name' => "$dbname"));
- }
- if (sizeof($db) == 0) {
- $ret = tripal_core_chado_insert('db', array('name' => $dbname,
- 'description' => 'Added automatically by the GFF loader'));
- if ($ret) {
- print " Added new database: $dbname\n";
- $db = tripal_core_chado_select('db', array('db_id'), array('name' => "$dbname"));
- }
- else {
- print "ERROR: cannot find or add the database $dbname\n";
- return 0;
- }
- }
- $db = $db[0];
-
- $dbxref = tripal_core_chado_select('dbxref', array('dbxref_id'), array(
- 'accession' => $accession, 'db_id' => $db->db_id));
-
- if (sizeof($dbxref) == 0) {
- $ret = tripal_core_chado_insert('dbxref', array('db_id' => $db->db_id,
- 'accession' => $accession, 'version' => ''));
- $dbxref = tripal_core_chado_select('dbxref', array('dbxref_id'), array(
- 'accession' => $accession, 'db_id' => $db->db_id));
- }
- $dbxref = $dbxref[0];
-
- $fdbx = tripal_core_chado_select('feature_dbxref', array('feature_dbxref_id'),
- array('dbxref_id' => $dbxref->dbxref_id, 'feature_id' => $feature->feature_id));
-
-
- if (sizeof($fdbx)==0) {
- $ret = tripal_core_chado_insert('feature_dbxref', array(
- 'feature_id' => $feature->feature_id,
- 'dbxref_id' => $dbxref->dbxref_id));
- if ($ret) {
- print " Adding Dbxref $dbname:$accession\n";
- }
- else {
- print "ERROR: failed to insert Dbxref: $dbname:$accession\n";
- return 0;
- }
- }
- else {
- print " Dbxref already associated, skipping $dbname:$accession\n";
- }
- }
- return 1;
- }
- function tripal_feature_load_gff3_ontology($feature, $dbxrefs) {
-
- foreach ($dbxrefs as $dbxref) {
-
- $ref = explode(":", $dbxref);
- $dbname = $ref[0];
- $accession = $ref[1];
-
- $db = tripal_core_chado_select('db', array('db_id'), array('name' => "DB:$dbname"));
- if (sizeof($db) == 0) {
- $db = tripal_core_chado_select('db', array('db_id'), array('name' => "$dbname"));
- }
- if (sizeof($db) == 0) {
- print "ERROR: Database, $dbname is missing for reference: $dbname:$accession\n";
- return 0;
- }
- $db = $db[0];
-
- $dbxref = tripal_core_chado_select('dbxref', array('dbxref_id'), array(
- 'accession' => $accession, 'db_id' => $db->db_id));
- if (sizeof($dbxref) == 0) {
- print "ERROR: Accession, $accession is missing for reference: $dbname:$accession\n";
- return 0;
- }
- $dbxref = $dbxref[0];
-
- $cvterm = tripal_core_chado_select('cvterm', array('cvterm_id'), array(
- 'dbxref_id' => $dbxref->dbxref_id));
-
- if (sizeof($cvterm) == 0) {
- $cvterm = tripal_core_chado_select('cvterm_dbxref', array('cvterm_id'), array(
- 'dbxref_id' => $dbxref->dbxref_id));
- }
- if (sizeof($cvterm) == 0) {
- print "ERROR: CVTerm is missing for reference: $dbname:$accession\n";
- return 0;
- }
- $cvterm = $cvterm[0];
-
- $fcvt = tripal_core_chado_select('feature_cvterm', array('feature_cvterm_id'),
- array('cvterm_id' => $cvterm->cvterm_id, 'feature_id' => $feature->feature_id));
-
- if (sizeof($fcvt)==0) {
- $values = array(
- 'feature_id' => $feature->feature_id,
- 'cvterm_id' => $cvterm->cvterm_id,
- 'pub_id' => array(
- 'uniquename' => 'null',
- ),
- );
- $ret = tripal_core_chado_insert('feature_cvterm', $values);
- if ($ret) {
- print " Adding ontology term $dbname:$accession\n";
- }
- else {
- print "ERROR: failed to insert ontology term: $dbname:$accession\n";
- return 0;
- }
- }
- else {
- print " Ontology term already associated, skipping $dbname:$accession\n";
- }
- }
- return 1;
- }
- function tripal_feature_load_gff3_alias($feature, $aliases) {
-
- $sql = "SELECT * FROM {cv} WHERE name='synonym_type'";
- $syncv = db_fetch_object(db_query($sql));
- if (!$syncv) {
- $sql = "INSERT INTO {cv} (name,definition) VALUES ('synonym_type','')";
- if (!db_query($sql)) {
- print("ERROR: Failed to add the synonyms type vocabulary");
- return 0;
- }
- $syncv = db_fetch_object(db_query($sql));
- }
-
- $cvtsql = "
- SELECT * FROM {cvterm} CVT
- INNER JOIN {cv} CV ON CVT.cv_id = CV.cv_id
- WHERE CVT.name = '%s' and CV.name = '%s'
- ";
- $syntype = db_fetch_object(db_query($cvtsql, 'exact', 'synonym_type'));
- if (!$syntype) {
- $term = array(
- 'name' => array('exact'),
- 'id' => array("internal:exact"),
- 'definition' => array(''),
- 'is_obsolete' => array(0),
- );
- $syntype = tripal_cv_add_cvterm($term, $syncv->name, 0, 1);
- if (!$syntype) {
- print("Cannot add synonym type: internal:$type");
- return 0;
- }
- }
-
- foreach ($aliases as $alias) {
- print " Adding Alias $alias\n";
-
-
- $synsql = "SELECT * FROM {synonym}
- WHERE name = '%s' and type_id = %d";
- $synonym = db_fetch_object(db_query($synsql, $alias, $syntype->cvterm_id));
- if (!$synonym) {
- $sql = "INSERT INTO {synonym}
- (name,type_id,synonym_sgml)
- VALUES ('%s',%d,'%s')";
- $result = db_query($sql, $alias, $syntype->cvterm_id, '');
- if (!$result) {
- print "ERROR: cannot add alias $alias to synonym table\n";
- }
- }
- $synonym = db_fetch_object(db_query($synsql, $alias, $syntype->cvterm_id));
-
-
- $pubsql = "SELECT * FROM {pub} WHERE uniquename = 'null'";
- $pub = db_fetch_object(db_query($pubsql));
- if (!$pub) {
- $sql = "INSERT INTO pub (uniquename,type_id) VALUES ('%s',
- (SELECT cvterm_id
- FROM cvterm CVT
- INNER JOIN dbxref DBX on DBX.dbxref_id = CVT.dbxref_id
- INNER JOIN db DB on DB.db_id = DBX.db_id
- WHERE CVT.name = 'null' and DB.name = 'null')";
- $result = db_query($sql, 'null');
- if (!$result) {
- print "ERROR: cannot add null publication needed for setup of alias\n";
- return 0;
- }
- }
- $pub = db_fetch_object(db_query($pubsql));
-
-
- $synsql = "SELECT * FROM {feature_synonym}
- WHERE synonym_id = %d and feature_id = %d and pub_id = %d";
- $fsyn = db_fetch_object(db_query($synsql, $synonym->synonym_id, $feature->feature_id, $pub->pub_id));
- if (!$fsyn) {
- $sql = "INSERT INTO {feature_synonym}
- (synonym_id,feature_id,pub_id)
- VALUES (%d,%d,%d)";
- $result = db_query($sql, $synonym->synonym_id, $feature->feature_id, $pub->pub_id);
- if (!$result) {
- print "ERROR: cannot add alias $alias to feature synonym table\n";
- return 0;
- }
- }
- else {
- print " Synonym $alias already exists. Skipping\n";
- }
- }
- return 1;
- }
- function tripal_feature_load_gff3_feature($organism, $analysis_id, $cvterm, $uniquename, $name,
- $residues, $is_analysis='f', $is_obsolete='f', $add_only, $score) {
-
- $feature_sql = "SELECT * FROM {feature}
- WHERE organism_id = %d and uniquename = '%s' and type_id = %d";
- $feature = db_fetch_object(db_query($feature_sql, $organism->organism_id, $uniquename, $cvterm->cvterm_id));
- if (strcmp($is_obsolete, 'f')==0) {
- $is_obsolete = 'false';
- }
- if (strcmp($is_analysis, 'f')==0) {
- $is_analysis = 'false';
- }
-
- if (!$feature) {
- print "Adding feature '$uniquename' ($cvterm->name)\n";
- $isql = "INSERT INTO {feature} (organism_id, name, uniquename, residues, seqlen,
- md5checksum, type_id,is_analysis,is_obsolete)
- VALUES(%d,'%s','%s','%s',%d, '%s', %d, %s, %s)";
- $result = db_query($isql, $organism->organism_id, $name, $uniquename, $residues, drupal_strlen($residues),
- md5($residues), $cvterm->cvterm_id, $is_analysis, $is_obsolete);
- if (!$result) {
- print "ERROR: failed to insert feature '$uniquename' ($cvterm->name)\n";
- return 0;
- }
- }
- elseif (!$add_only) {
- print "Updating feature '$uniquename' ($cvterm->name)\n";
- $usql = "UPDATE {feature}
- SET name = '%s', residues = '%s', seqlen = '%s', md5checksum = '%s',
- is_analysis = %s, is_obsolete = %s
- WHERE organism_id = %d and uniquename = '%s' and type_id = %d";
- $result = db_query($usql, $name, $residues, drupal_strlen($residues), md5($residues), $is_analysis, $is_obsolete,
- $organism_id, $uniquename, $cvterm->cvterm_id);
- if (!$result) {
- print "ERROR: failed to update feature '$uniquename' ($cvterm->name)\n";
- return 0;
- }
- }
- else {
-
-
- print "Skipping existing feature: '$uniquename' ($cvterm->name).\n";
- return 0;
- }
-
- $feature = db_fetch_object(db_query($feature_sql, $organism->organism_id, $uniquename, $cvterm->cvterm_id));
-
- $af_values = array(
- 'analysis_id' => $analysis_id,
- 'feature_id' => $feature->feature_id
- );
- $afeature = tripal_core_chado_select('analysisfeature', array('analysisfeature_id'), $af_values, array('has_record'));
- if (count($afeature)==0) {
-
- if (strcmp($score, '.')!=0) {
- $af_values['significance'] = $score;
- }
- if (!tripal_core_chado_insert('analysisfeature', $af_values)) {
- print "ERROR: could not add analysisfeature record: $analysis_id, $feature->feature_id\n";
- }
- else {
- print " Added analysisfeature record\n";
- }
- }
- else {
-
- $new_vals = array();
- if (strcmp($score, '.')!=0) {
- $new_vals['significance'] = $score;
- }
- else {
- $new_vals['significance'] = '__NULL__';
- }
- if (!$add_only) {
- $ret = tripal_core_chado_update('analysisfeature', $af_values, $new_vals);
- if (!$ret) {
- print "ERROR: could not update analysisfeature record: $analysis_id, $feature->feature_id\n";
- }
- else {
- print " Updated analysisfeature record\n";
- }
- }
- }
- return $feature;
- }
- function tripal_feature_load_gff3_featureloc($feature, $organism, $landmark, $fmin,
- $fmax, $strand, $phase, $is_fmin_partial, $is_fmax_partial, $residue_info, $locgroup) {
-
- $sql = "SELECT * FROM {feature}
- WHERE organism_id = %d and uniquename = '%s'";
- $srcfeature = db_fetch_object(db_query($sql, $organism->organism_id, $landmark));
- if (!$srcfeature) {
- print "ERROR: cannot find landmark feature $landmark. Cannot add the feature location record\n";
- return 0;
- }
-
-
-
-
- $rank = 0;
- $exists = 0;
- $featureloc_sql = "SELECT FL.featureloc_id,FL.fmin,FL.fmax,F.uniquename as srcname,
- rank
- FROM {featureloc} FL
- INNER JOIN {feature} F on F.feature_id = FL.srcfeature_id
- WHERE FL.feature_id = %d
- ORDER BY rank ASC";
- $recs = db_query($featureloc_sql, $feature->feature_id);
- while ($featureloc = db_fetch_object($recs)) {
- if (strcmp($featureloc->srcname, $landmark)==0 and
- $featureloc->fmin == $fmin and $featureloc->fmax == $fmax) {
-
-
- print " No change to featureloc\n";
- $exists = 1;
- }
- $rank = $featureloc->rank + 1;
- }
- if (!$exists) {
- $rank++;
-
- if (!$phase) {
- $phase = 'NULL';
- }
- if (strcmp($is_fmin_partial, 'f')==0) {
- $is_fmin_partial = 'false';
- }
- elseif (strcmp($is_fmin_partial, 't')==0) {
- $is_fmin_partial = 'true';
- }
- if (strcmp($is_fmax_partial, 'f')==0) {
- $is_fmax_partial = 'false';
- }
- elseif (strcmp($is_fmax_partial, 't')==0) {
- $is_fmax_partial = 'true';
- }
- print " Adding featureloc $srcfeature->uniquename fmin: $fmin, fmax: $fmax, strand: $strand, phase: $phase, rank: $rank\n";
- $fl_isql = "INSERT INTO {featureloc}
- (feature_id, srcfeature_id, fmin, is_fmin_partial, fmax, is_fmax_partial,
- strand, phase, residue_info, locgroup, rank)
- VALUES (%d,%d,%d,%s,%d,%s,%d,%s,'%s',%d,%d)";
- $result = db_query($fl_isql, $feature->feature_id, $srcfeature->feature_id, $fmin, $is_fmin_partial, $fmax, $is_fmax_partial,
- $strand, $phase, $residue_info, $locgroup, $rank);
- if (!$result) {
- print "ERROR: failed to insert featureloc\n";
- exit;
- return 0;
- }
- }
- return 1;
- }
- function tripal_feature_load_gff3_property($feature, $property, $value) {
-
-
- $cvt_sql = "SELECT * FROM {cvterm} CVT
- INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
- WHERE CV.name = '%s' and CVT.name = '%s'";
- $cvterm = db_fetch_object(db_query($cvt_sql, 'feature_property', $property));
- if (!$cvterm) {
- $term = array(
- 'id' => "null:$property",
- 'name' => $property,
- 'namespace' => 'feature_property',
- 'is_obsolete' => 0,
- );
- print " Adding cvterm, $property\n";
- $cvterm = (object) tripal_cv_add_cvterm($term, 'feature_property', 0, 0);
- }
- if (!$cvterm) {
- print "ERROR: cannot add cvterm, $property\n";
- exit;
- }
-
-
-
- $add = 1;
- $rank = 0;
- $sql = "SELECT rank,value FROM {featureprop}
- WHERE feature_id = %d and type_id = %d
- ORDER BY rank ASC";
- $result = db_query($sql, $feature->feature_id, $cvterm->cvterm_id);
- while ($prop = db_fetch_object($result)) {
- if (strcmp($prop->value, $value)==0) {
- $add = NULL;
- print " Property already exists, skipping\n";
- }
- $rank = $prop->rank + 1;
- }
-
- if ($add) {
- print " Setting feature property. $property: $value\n";
- $isql = "INSERT INTO {featureprop} (feature_id,type_id,value,rank)
- VALUES (%d,%d,'%s',%d)";
- db_query($isql, $feature->feature_id, $cvterm->cvterm_id, $value, $rank);
- }
- }
|