Skip to content

Commit

Permalink
Merge pull request #1153 from tripal/1040-tv3-gff3_performance
Browse files Browse the repository at this point in the history
Fix for PHP compatibility
  • Loading branch information
spficklin committed Jan 26, 2021
2 parents 14c83a9 + a54dc85 commit ee38a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tripal_chado/includes/TripalImporter/GFF3Importer.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2593,7 +2593,7 @@ class GFF3Importer extends TripalImporter {
}

// Get the organism object.
[$genus, $species] = explode(':', $organism_attr, 2);
list($genus, $species) = explode(':', $organism_attr, 2);
$organism = new ChadoRecord('organism');
$organism->setValues([
'genus' => $genus,
Expand Down

0 comments on commit ee38a9c

Please sign in to comment.