1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
|
#!/usr/bin/perl -w
use Config;
use File::Basename qw(&basename &dirname);
use FindBin '$Bin';
use Cwd;
$origdir = cwd;
chdir dirname($0);
$file = basename($0, '.PL','.PLS');
$file = "gmod_$file.pl";
my %OPTIONS;
if (open F,"$Bin/../../build.conf") {
while (<F>) {
next if /^\#/;
chomp;
$OPTIONS{$1} = $2 if /^(\w+)\s*=\s*(.+)/;
}
close F;
}
open OUT,">$file" or die "Can't create $file: $!";
print OUT "$Config{startperl}\n";
if ($OPTIONS{LIB}) {
print OUT "use lib '$OPTIONS{LIB}';\n";
}
if ($OPTIONS{PREFIX}) {
print OUT "use lib '$OPTIONS{PREFIX}/lib'i\n";
}
print OUT <<'!NO!SUBS!';
use strict;
use warnings;
#use lib '/Users/cain/cvs_stuff/schema/trunk/chado/lib';
use Bio::Tools::GFF;
use Bio::SeqIO;
use Bio::Chado::AutoDBI;
use Bio::Chado::LoadDBI;
use Data::Dumper;
use Getopt::Long;
use Term::ProgressBar;
use File::Temp qw(tempfile);
use constant DEBUG => 0;
$| = 1;
=head1 NAME
gmod_load_gff3.pl - Load gff3 files into a chado database.
=head1 SYNOPSIS
% gmod_load_gff3.pl --organism Human --srcdb 'DB:refseq' --gfffile refseq.gff
=head1 COMMAND-LINE OPTIONS
The following command line options are available. Note that they
can be abbreviated to one letter.
--cache (optional, defaults to 1000) The number of features
to cache before
committing to the database
--force (optional, defaults to false) Force the file to load,
even if it has already
been loaded before
--gfffile (required) The name of the GFF3 file
--organism (optional, default from --dbprofile) Common name of the organism
--srcdb (optional) The name of the source
database
--uniquename (optional) The tag to use to provide
feature.uniquename
? --ontology (optional) Ontology to use instead
? of the default. Note that
? this should be detected
? automatically, but isn't
? yet.
--dbprofile (optional, defaults to 'default') Name of the database
profile used by
Bio::GMOD::Config to get
the organism.
--fp_cv (optional, defaults to 'feature_property') Name of the
feature property cv
=head1 DESCRIPTION
WARNING: this loader doesn't handle cds and exon features the same way
as the bulk loader (yet!).
ANOTHER WARNING: This script is incompatible with the Sequence Ontology
views that are created automatically for Chado and reside in the
'so' schema. Specifically, the view "so.genotype" will cause the
initialization of this script to fail. To fix this problem and use
this script, you need to remove the genotype view:
DROP VIEW so.genotype;
The most important thing to know about this loader is that it is SLOW!
The bulk loader (gmod_bulk_load_gff3.pl, also in this distribution) is
many times faster (perhaps 100 times faster). The only real advantage
is the this loader is easier to port to other database systems because
it runs on Class::DBI middleware.
The gmod_load_gff3.pl script takes genomic annotations in the GFF3 format
and loads them into several tables in chado. (see
L<http://song.sourceforge.net/gff3.shtml> for a description of the format).
There are two types of data tags in GFF3: those that are part of the
specification, and those that aren't. There is a short list of those that
are part of the spec (ie, reserved) They include ID, Parent, Name, Alias,
Target, and Gap. Tags that are part of the spec are first letter capitalized
and all other tags are all lower case. All tags that are part of the spec
are handled as special cases during the insert, as well as some non-spec
tags. These include 'description', tags beginning with 'db:' or 'DB:',
and tags beginning with 'cvterm:'. All other tags are inserted into the
same table (featureprop). If that is not the desired behavior for a given
tag, you may look at modifying the load_custom_tags subroutine. If you
have a modification that you feel might be particularly useful, please
email your suggestion to the authors.
(Note that this behavior might better be module-ized, so that we could
provide an empty 'custom tag processing' module, that if installed, would
provide addtional processing of custom tags. Add it to the todo list.)
=head2 NOTES
=over
=item The ORGANISM table
This script assumes that the organism table is populated with information
about your organism. If you are unsure if that is the case, you can
execute this command from the psql command-line:
select * from organism;
If you do not see your organism listed, execute this command to insert it:
insert into organism (abbreviation, genus, species, common_name)
values ('H.sapiens', 'Homo','sapiens','Human');
substituting in the appropriate values for your organism.
=item The DB table
This script assumes that the db table is populated with a row describing
the database that is the source of these annotations. If you are unsure,
execute this command:
select * from db;
If you do not see your database listed, execute this command:
insert into db (name) values ('DB:refseq');
Substituting for the name of your database. A more complete insert
command may be appropriate in your case, but this should work in a pinch.
=item GFF3
The GFF in the datafile must be version 3 due to its tighter control of
the specification and use of controlled vocabulary. Accordingly, the names
of feature types must be exactly those in the Sequence Ontology, not the
synonyms and not the accession numbers (SO accession numbers may be
supported in future versions of this script). Also, in order for the load
to be successful, the reference sequences (eg, chromosomes or contigs)
must be defined in the GFF file before any features on them are listed.
This can be done either by the reference-sequence meta data specification,
which would be lines that look like this:
##sequence-region chr1 1 246127941
or with a standard GFF line:
chr1 NCBI chromosome 1 246127941 . . . ID=chr1
Do not use both. Note that if the '##sequence-region' notation is used,
this script will not be able to determine the type of sequence and therefore
will assign it the 'region' type which is very general. If that is not what
you want, use the standard GFF line to specify the reference
sequence.
=item Uniquename
By providing the command line flag --uniquename, the user indicates what
GFF tag to uses as the feature.uniquename when inserting into the feature
table. Note that this name must be unique among all features in the feature
table; if it is not, the load of that feature will probably fail.
=item Analysis Results
Currently, this loader doesn't capture analysis results. That is, it doesn't
populate the analysis or analysisfeature tables and ignores the score column
in the GFF3.
=back
=head1 AUTHORS
Allen Day E<lt>allenday@ucla.eduE<gt>, Scott Cain E<lt>cain@cshl.orgE<gt>
Copyright (c) 2003-2004
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
my ( undef, $TMPFASTA ) = tempfile( "XXXXXX", ".fa", SUFFIX => '.fa' );
my ( undef, $TMPGFF ) = tempfile( "XXXXXX", ".gff", SUFFIX => '.gff' );
warn $TMPFASTA if DEBUG;
warn $TMPGFF if DEBUG;
my ( $ORGANISM,$GFFFILE,$UNIQUENAME,$CACHE_SIZE,$FORCE_LOAD,
$ONTOLOGY,$DBPROFILE, $FP_CV, $SRC_DB );
my ( $progress, $next_update, $linecount ) =
( undef, undef, undef ); #progressbar;
my ( $chado_db, $chado_organism, $nullpub ) =
( undef, undef, undef );
my $feature_count = 0; #for cache/flush
my ($auto_cv, $fp_cv);
my $null_db_id;
my %srcfeature = ();
my %feature = ();
my %featureloc_locgroup = ();
my %dbxref = ();
my %cvterm = ();
my $so;
my $gff_source_db;
my %gff_source;
initialize();
my $mtime = ( stat($GFFFILE) )[9];
my ($pub) = Bio::Chado::CDBI::Pub->search( title => $GFFFILE . " " . $mtime );
if ( $pub and !$FORCE_LOAD ) {
print "\nIt appears that you have already loaded this exact file\n";
print "Do you want to continue [no]? ";
chomp( my $response = <STDIN> );
unless ( $response =~ /^[Yy]/ ) {
print "OK--bye.\n";
exit 0;
}
}
else {
$pub = Bio::Chado::CDBI::Pub->find_or_create(
{
title => $GFFFILE . " " . $mtime,
miniref => $GFFFILE . " " . $mtime,
uniquename => $GFFFILE . " " . $mtime,
type_id => $cvterm{gff_file}->id
}
);
}
die "unable to find or create a pub entry in the pub table"
unless $pub;
#iterate over each feature in the gff, caching objects up to
#CACHE_SIZE, then flushing. this is a way to break our large
#load transaction into multiple cache/flush mini-transactions
my @transaction;
my $gffio = Bio::Tools::GFF->new( -file => $TMPGFF, -gff_version => 3 );
#my $gffio = Bio::Tools::GFF->new(-file => $GFFFILE, -gff_version => 3);
$feature_count += load_segments($gffio);
while ( my $gff_feature = $gffio->next_feature() ) {
cache_cvterm( $gff_feature->primary_tag, $so->id );
my ($chado_type) = $cvterm{ $gff_feature->primary_tag };
die $gff_feature->primary_tag
. " could not be found in your cvterm table.\n"
. "Either the Sequence Ontology was incorrectly loaded,\n"
. "or this file doesn't contain GFF3"
unless $chado_type;
if ($gff_feature->primary_tag eq "CDS") {
warn "This GFF file contains CDS features, but this loader has not\n"
. "yet been modified to handle CDS features in the standard GMOD/Chado\n"
. "way. It is suggested that you use gmod_bulk_load_gff3.pl instead\n\n";
}
my ($id) =
$gff_feature->has_tag('ID')
? $gff_feature->get_tag_values('ID')
: '';
my ($parent) =
$gff_feature->has_tag('Parent')
? $gff_feature->get_tag_values('Parent')
: '';
# look up the feature
# problem here: two places that the reference sequence/srcfeature
# might be found: either in the GFF file (in which case, look
# for it in a hash here) or in the database already. If it is
# in the database already, it might be very difficult to look up
# via seq_id. I'll solve the first problem and think about the
# second sjc 3/23/04
if ( ($id ne $gff_feature->seq_id) && ($gff_feature->seq_id ne '.') ) {
( $srcfeature{$gff_feature->seq_id} ) =
Bio::Chado::CDBI::Feature->search( name => $gff_feature->seq_id )
unless $srcfeature{$gff_feature->seq_id};
unless ( $srcfeature{$gff_feature->seq_id} ) {
warn "\n" . "*" x 72 . "\n";
warn "Unable to find a source feature id for the reference sequence in this line:\n";
warn $gff_feature->gff_string . "\n\n";
warn "That is, "
. $gff_feature->seq_id
. " should either have a entry in the \n";
warn
"feature table or earlier in this GFF file and it doesn't.\n\n";
warn "*" x 72 . "\n";
exit 1;
}
}
#is this general, or what should really be done here?
#parse the dbxref and get the appropriate db_id
#or take commandline arg mapping them out
if ( $id && !$dbxref{$id} ) {
my ($chado_dbxref) = Bio::Chado::CDBI::Dbxref->find_or_create(
{
db_id => $chado_db->id,
accession => $id,
}
);
$dbxref{$id} = $chado_dbxref;
}
my $chado_feature =
load_feature_locations( $gff_feature, $chado_type, $id );
$feature_count++;
$feature{$id} = $chado_feature if $gff_feature->has_tag('ID');
my @tags = $gff_feature->all_tags;
foreach my $tag (@tags) {
if ( $tag eq 'ID' ) {
#this currently doesn't do anything. ID is used elsewhere though
}
elsif ( $tag eq 'Parent' ) {
load_Parent_tag( $gff_feature, $chado_feature );
}
elsif ( $tag eq 'Alias' ) {
load_Alias_tag( $gff_feature, $chado_feature );
}
elsif ( $tag eq 'Name' ) {
load_Name_tag( $gff_feature, $chado_feature );
}
elsif ( $tag eq 'Target' ) {
load_Target_tag( $gff_feature, $chado_feature );
}
elsif ( $tag eq 'Note' ) {
load_Note_tag( $gff_feature, $chado_feature );
}
elsif ( $tag eq 'Ontology_term' || $tag =~ /^cvterm/) {
load_Ontology_term( $gff_feature, $chado_feature, $tag );
}
elsif ( $tag eq 'Dbxref' || $tag =~ /^dbxref/) {
load_Dbxref_term( $gff_feature, $chado_feature, $tag );
}
elsif ( $tag =~ /^[A-Z]/ ) {
die "$0 doesn't handle '$tag' tags yet. are you sure it's allowed by the GFF3 spec?";
}
elsif ( defined $UNIQUENAME && $tag eq $UNIQUENAME ) {
# do nothing--we already used this information to create the feature
}
elsif ( $tag =~ /^[a-z]/ ) {
load_custom_tags( $gff_feature, $chado_feature, $tag );
}
}
if ( $feature_count % $CACHE_SIZE == 0 ) {
$_->dbi_commit foreach @transaction;
@transaction = ();
}
$next_update = $progress->update($feature_count)
if ( $feature_count > $next_update );
$progress->update($feature_count) if ( $feature_count >= $next_update );
$progress->update($linecount) if ( $next_update >= $linecount );
}
$_->dbi_commit foreach @transaction;
$gffio->close();
print "\n$feature_count features added\n";
my $seqs_loaded = load_sequences();
print "\n$seqs_loaded sequences added\n";
print "Done\n";
exit 0;
=pod
=head1 load_custom_tags
Handles inserting non-reserved tags into chado. Determines if the tag
falls into a short list of tags for custom handling and deals with them
appropriately. If the tag is not on the list, the information is placed
in the featureprop table.
=cut
sub load_custom_tags {
my $gff_feature = shift;
my $chado_feature = shift;
my $tag = shift;
my @d = $gff_feature->get_tag_values($tag);
if (0) {
}
elsif ( $tag eq 'description' ) {
foreach my $d (@d) {
next if $d eq '';
my ($featureprop) = Bio::Chado::CDBI::Featureprop->find_or_create(
{
feature_id => $chado_feature->id,
type_id => $cvterm{description}->id,
value => $d,
}
);
push @transaction, ($featureprop);
}
}
elsif ( $tag =~ /^db:/ ) {
$tag =~ s/^db:/DB:/;
my $add_db = 0;
my ($db) = Bio::Chado::CDBI::Db->search( name => $tag );
if ( !$db ) {
$add_db = 1;
$db = Bio::Chado::CDBI::Db->find_or_create(
{
name => $tag,
}
);
}
die "couldn't create db $db" unless $db;
push @transaction, $db if $add_db;
foreach my $d (@d) {
next if $d eq '';
my ($dbxref) = Bio::Chado::CDBI::Dbxref->find_or_create(
{
db_id => $db->id,
accession => $d
}
);
my ($feature_dbxref) = Bio::Chado::CDBI::Feature_Dbxref->find_or_create(
{
feature_id => $chado_feature->id,
dbxref_id => $dbxref->id,
}
);
push @transaction, ( $dbxref, $feature_dbxref );
}
}
elsif ( $tag eq 'dbxref') {
load_Dbxref_term($gff_feature,$chado_feature,$tag);
}
else {
unless ( defined $cvterm{$tag} ) {
cache_cvterm($tag, $fp_cv ? $fp_cv->id : 0);
$progress->message("Data with the $tag tag are being placed in the featureprop table");
}
my $rank = 0;
foreach my $d (@d) {
next if $d eq '';
my ($featureprop) = Bio::Chado::CDBI::Featureprop->find_or_create(
{
feature_id => $chado_feature->id,
type_id => $cvterm{$tag}->id,
value => $d,
rank => $rank,
}
);
$rank++;
push @transaction, $featureprop;
}
}
}
=pod
=head1 load_Dbxref_term
Loads dbxrefs.
=cut
sub load_Dbxref_term {
my $gff_feature = shift;
my $chado_feature = shift;
my $tag = shift;
my @d = $gff_feature->get_tag_values($tag);
foreach my $d (@d) {
next if $d eq '';
if ($d =~ /(.+):(.+)/) {
$tag = "DB:$1";
$d = $2;
} else {
die "unable to determine database for dbxref: $d\n";
}
my $add_db = 0;
my ($db) = Bio::Chado::CDBI::Db->search( name => $tag );
if ( !$db ) {
$add_db = 1;
$db = Bio::Chado::CDBI::Db->find_or_create(
{
name => $tag,
}
);
}
die "couldn't create db $db" unless $db;
push @transaction, $db if $add_db;
my ($dbxref) = Bio::Chado::CDBI::Dbxref->find_or_create(
{
db_id => $db->id,
accession => $d
}
);
my ($feature_dbxref) = Bio::Chado::CDBI::Feature_Dbxref->find_or_create(
{
feature_id => $chado_feature->id,
dbxref_id => $dbxref->id,
}
);
push @transaction, ( $dbxref, $feature_dbxref );
}
}
=head1 load_Ontology_term
Loads ontology terms to feature_cvterm.
=cut
sub load_Ontology_term {
my $gff_feature = shift;
my $chado_feature = shift;
my $tag = shift;
my @d = $gff_feature->get_tag_values($tag);
foreach my $d (@d) {
next if $d eq '';
my $db;
if ($d =~ /([^:]+)\:([^:]+)/ ) {
$db = $1;
$d = $2;
}
my $dbxref;
my $db_obj_iterator;
if ($db) {
if ($db eq 'GO' or $db eq 'SO') {
$db_obj_iterator = Bio::Chado::CDBI::Db->search( name => $db );
} else {
$progress->message(
"I don't know how to deal with OntologyTerms like $db:$d\n")
and next;
}
while (!$dbxref and my $db_obj = $db_obj_iterator->next) {
($dbxref) = Bio::Chado::CDBI::Dbxref->search(
accession => $d ,
db_id => $db_obj->id );
}
} else {
($dbxref) = Bio::Chado::CDBI::Dbxref->search( accession => $d );
}
$progress->message("couldn't find cvterm in dbxref: $d") and next
unless $dbxref;
my ($cvterm) = Bio::Chado::CDBI::Cvterm->search( dbxref_id => $dbxref->id );
next unless $cvterm;
my ($feature_cvterm) = Bio::Chado::CDBI::Feature_Cvterm->find_or_create(
{
feature_id => $chado_feature->id,
cvterm_id => $cvterm->id,
pub_id => $nullpub->id,
}
);
push @transaction, $feature_cvterm;
}
}
=pod
=head1 load_Note_tag
Loads Note tag values to the featureprop table.
=cut
sub load_Note_tag {
my $gff_feature = shift;
my $chado_feature = shift;
cache_cvterm('Note') unless ( defined $cvterm{'Note'} );
my @d = $gff_feature->get_tag_values('Note');
my $rank = 0;
foreach my $d (@d) {
next if $d eq '';
my ($featureprop) = Bio::Chado::CDBI::Featureprop->find_or_create(
{
feature_id => $chado_feature->id,
type_id => $cvterm{'Note'}->id,
value => $d,
rank => $rank,
}
);
push @transaction, $featureprop;
$rank++;
}
}
=pod
=head1 load_Target_tag
Loads Target values. These are used for alignment information.
=cut
sub load_Target_tag {
my $gff_feature = shift;
my $chado_feature = shift;
if ( $gff_feature->has_tag('Target') ) {
my @targets = $gff_feature->get_tag_values('Target');
foreach my $target (@targets) {
my ( $tstart, $tend );
if ( $target =~ /^(\S+?)\+(\d+)\+(\d+)$/ ) {
( $target, $tstart, $tend ) = ( $1, $2, $3 );
}
else {
die "your Target attribute seems to be improperly formated";
}
my ($chado_synonym1) = Bio::Chado::CDBI::Synonym->find_or_create(
{
name => $target,
synonym_sgml => $target,
type_id => $cvterm{synonym}->id
}
);
my ($chado_synonym2) = Bio::Chado::CDBI::Feature_Synonym->find_or_create(
{
synonym_id => $chado_synonym1->id,
feature_id => $chado_feature->id,
pub_id => $pub->id,
}
);
my ($chado_featureloc) = Bio::Chado::CDBI::Featureloc->find_or_create(
{
feature_id => $chado_feature->id,
srcfeature_id => $chado_feature->id,
fmin => $tstart,
fmax => $tend,
rank => 1 #potential bug here -allenday
}
);
my ($chado_featureprop) = Bio::Chado::CDBI::Featureprop->find_or_create(
{
feature_id => $chado_feature->id,
type_id => $cvterm{score}->id,
value => $gff_feature->score
}
);
push @transaction, $chado_synonym1;
push @transaction, $chado_synonym2;
push @transaction, $chado_featureloc;
push @transaction, $chado_featureprop;
}
}
}
=pod
=head1 load_Parent_tag
Loads Parent tag values. These are used to denote a parent feature
of the given feature.
=cut
sub load_Parent_tag {
my $gff_feature = shift;
my $chado_feature = shift;
if ( $gff_feature->has_tag('Parent') ) {
my @parents = $gff_feature->get_tag_values('Parent');
foreach my $parent (@parents) {
next if $parent eq '';
my $reltype =
( $gff_feature->primary_tag eq 'protein' ||
$gff_feature->primary_tag eq 'polypeptide' )
? $cvterm{develops_from}
: $cvterm{part_of};
#unhandled exception: what if $feature{$parent} hasn't been seen yet?
( $feature{$parent} ) = Bio::Chado::CDBI::Feature->search( name => $parent )
unless $feature{$parent};
my $chado_feature_relationship =
Bio::Chado::CDBI::Feature_Relationship->find_or_create(
{
subject_id => $chado_feature->id,
object_id => $feature{$parent}->id,
type_id => $reltype,
}
);
push @transaction, $chado_feature_relationship;
}
}
}
=pod
=head1 load_Alias_tag
Loads Alias tag values. These are used for synonyms.
=cut
sub load_Alias_tag {
my $gff_feature = shift;
my $chado_feature = shift;
if ( $gff_feature->has_tag('Alias') ) {
my @aliases;
if ( $gff_feature->has_tag('Alias') ) {
push @aliases, $gff_feature->get_tag_values('Alias');
}
foreach my $alias (@aliases) {
next if $alias eq '';
#create the synonym
my ($chado_synonym1) = Bio::Chado::CDBI::Synonym->find_or_create(
{
name => $alias,
synonym_sgml => $alias,
type_id => $cvterm{synonym}->id
}
);
#and link it to the feature via feature_synonym
my ($chado_synonym2) = Bio::Chado::CDBI::Feature_Synonym->find_or_create(
{
synonym_id => $chado_synonym1->id,
feature_id => $chado_feature->id,
pub_id => $pub->id,
}
);
push @transaction, $chado_synonym1;
push @transaction, $chado_synonym2;
}
}
}
=pod
=head1 load_Name_tag
Loads Name tag values.
=cut
sub load_Name_tag {
my $gff_feature = shift;
my $chado_feature = shift;
my @names;
if ( $gff_feature->has_tag('Name') ) {
@names = $gff_feature->get_tag_values('Name');
} elsif ($gff_feature->has_tag('ID') ) {
@names = $gff_feature->get_tag_values('ID');
} else {
return;
}
foreach my $name (@names) {
next if $name eq '';
my ($chado_synonym1) = Bio::Chado::CDBI::Synonym->find_or_create(
{
name => $name,
synonym_sgml => $name,
type_id => $cvterm{synonym}->id
}
);
my ($chado_synonym2) = Bio::Chado::CDBI::Feature_Synonym->find_or_create(
{
synonym_id => $chado_synonym1->id,
feature_id => $chado_feature->id,
pub_id => $pub->id,
}
);
push @transaction, $chado_synonym1;
push @transaction, $chado_synonym2;
}
}
sub initialize {
GetOptions(
'organism:s' => \$ORGANISM,
'srcdb:s' => \$SRC_DB,
'gfffile:s' => \$GFFFILE,
'uniquename:s'=>\$UNIQUENAME,
'cache:s' => \$CACHE_SIZE,
'force' => \$FORCE_LOAD,
'ontology:s' => \$ONTOLOGY,
'dbprofile:s'=> \$DBPROFILE,
'fp_cv:s' => \$FP_CV,
)
or ( system( 'pod2text', $0 ), exit -1 );
unless($ORGANISM) {
if (eval {require Bio::GMOD::Config;
Bio::GMOD::Config->import();
require Bio::GMOD::DB::Config;
Bio::GMOD::DB::Config->import();
1; } ) {
my $gmod_conf = $ENV{'GMOD_ROOT'} || "/var/lib/gmod" ?
Bio::GMOD::Config->new($ENV{'GMOD_ROOT'}
|| "/var/lib/gmod")
: Bio::GMOD::Config->new();
my $profile = $DBPROFILE || 'default';
my $db_conf = Bio::GMOD::DB::Config->new($gmod_conf,$profile);
$ORGANISM = $db_conf->organism();
}
}
$SRC_DB ||= 'DB:refseq';
$CACHE_SIZE ||= 1000;
$ONTOLOGY ||= 'sequence';
$FP_CV ||= 'feature_property';
die "\nYou must specify a GFF file\n" unless $GFFFILE;
#deal with GFF3 files that contain sequence
# this is ugly, ugly, ugly, but in addtion to dealing with
# sequence, it also fixes Allen's method of tracking progress
die "$GFFFILE does not exist" unless ( -e $GFFFILE );
my $linenumber = `grep -n "^>" $GFFFILE`;
if ( $linenumber =~ /^(\d+)/ ) {
$linenumber = $1;
system("tail -n +$linenumber $GFFFILE > $TMPFASTA");
$linenumber -= 1;
system("head -n $linenumber $GFFFILE > $TMPGFF");
#we don't want to do this, as the filename is used in a pub record
#$GFFFILE = $TMPGFF;
}
else {
$TMPGFF = $GFFFILE;
}
#count the file lines. we need this to track load progress
open( WC, "grep -c -v '^#' $TMPGFF |" );
# open(WC,"grep -c -v '^#' $GFFFILE |");
$linecount = <WC>;
chomp $linecount;
close(WC);
($linecount) = $linecount =~ /^\s*?(\d+)/;
$progress = Term::ProgressBar->new(
{
name => "Approx $linecount features",
count => $linecount,
ETA => 'linear',
}
);
$progress->max_update_rate(1);
$next_update = 0;
Bio::Chado::LoadDBI->init();
($auto_cv) = Bio::Chado::CDBI::Cv->search(
{
name => 'autocreated',
}
);
($fp_cv) = Bio::Chado::CDBI::Cv->search(
{
name => $FP_CV,
}
);
die "Unable to find a 'autocreated' cv in the cv table; please add one" unless $auto_cv;
warn "No feature property cv found; unknown tags will be put in 'autocreated'" unless $fp_cv;
($so) = Bio::Chado::CDBI::Cv->search( { name => $ONTOLOGY } );
die "Unable to find $ONTOLOGY in cv table; that is a pretty big problem" unless $so;
# find needed cvterm and other pieces of information
my @needed_cvterms =
qw(description synonym note develops_from part_of gff_file score protein);
foreach my $n (@needed_cvterms) {
cache_cvterm($n, $fp_cv ? $fp_cv->id : 0);
}
cache_cvterm('region',$so->id); #make sure to get the SO region term
my @chado_organisms = Bio::Chado::CDBI::Organism->search( common_name => lc($ORGANISM));
if (scalar @chado_organisms > 1) {
die "More than one organism has the common name $ORGANISM. Please\n"
. "rerun the loader, specifying the the abbreviation or the genus\n"
. "and species enclosed in quotes\n\n";
}
elsif (scalar @chado_organisms == 1) {
$chado_organism = $chado_organisms[0];
}
@chado_organisms = Bio::Chado::CDBI::Organism->search( abbreviation => ucfirst($ORGANISM)) unless($chado_organism);
if (scalar @chado_organisms > 1) {
die "More than one organism has the abbreviation $ORGANISM. Please\n"
. "rerun the loader, specifying the the genus and species enclosed in quotes\n\n";
}
elsif (scalar @chado_organisms == 1) {
$chado_organism = $chado_organisms[0];
}
else {
my ($genus, $species) = split /\s+/, $ORGANISM;
($chado_organism) = Bio::Chado::CDBI::Organism->search(
genus => $genus,
species => $species );
}
($chado_db) = Bio::Chado::CDBI::Db->search( name => $SRC_DB ) if $SRC_DB;
($nullpub) = Bio::Chado::CDBI::Pub->search(miniref => 'null' );
unless ($chado_organism) {
warn "\n\nCouldn't find or create organism $ORGANISM.\n";
warn "The current contents of the organism table is:\n\n";
my @all_columns = Bio::Chado::CDBI::Organism->columns;
printf "%15s %8s %11s %11s %12s %15s\n\n", sort @all_columns;
my $organism_iterator = Bio::Chado::CDBI::Organism->retrieve_all();
while(my $organism = $organism_iterator->next){
my @cols = map { $organism->$_ } sort $organism->columns;
printf "%15s %8s %11s %11s %12s %15s\n", @cols;
}
print "\nPlease see \`perldoc gmod_load_gff3.pl\` for more information\n";
exit 1;
}
unless ($chado_db) {
warn "\n\nCouldn't find or create database $SRC_DB.\n";
warn "The current contents of the database table is:\n\n";
my @all_columns = Bio::Chado::CDBI::Db->columns;
printf "%10s %6s %13s %25s %5s %10s\n\n", sort @all_columns;
my $db_iterator = Bio::Chado::CDBI::Db->retrieve_all();
while(my $db = $db_iterator->next){
my @cols = map { $db->$_ } sort $db->columns;
printf "%10s %6s %13s %25s %5s %10s\n", @cols;
}
print "\nPlease see \`perldoc gmod_load_gff3.pl\` for more information\n";
exit 1;
}
}
sub load_segments {
my $gffio = shift;
my $i = 0;
# creates the features for each gff segment
while ( my $gff_segment = $gffio->next_segment() ) {
my ($segment) =
Bio::Chado::CDBI::Feature->search( { name => $gff_segment->display_id , organism_id => $chado_organism } );
if ( !$segment ) {
# about uniquenames here: since these are coming from ##sequence_region
# meta stuff in the header, there will be no uniquename attribute, so the
# only thing to do is to generate one.
my $f = Bio::Chado::CDBI::Feature->create(
{
organism_id => $chado_organism,
name => $gff_segment->display_id,
uniquename => $gff_segment->display_id . '_region',
type_id => $cvterm{'region'},
seqlen => $gff_segment->end
}
);
$i++;
$f->dbi_commit;
$srcfeature{ $f->name } = $f;
}
else {
$srcfeature{ $segment->name } = $segment;
}
}
return $i;
}
sub load_sequences {
my $seqs_loaded = 0;
if ( -e $TMPFASTA ) {
Bio::Chado::CDBI::Feature->set_sql( update_residues =>
qq{UPDATE feature SET residues = residues || ? WHERE feature_id = ?}
);
my $sth = Bio::Chado::CDBI::Feature->sql_update_residues;
print STDERR "loading sequence data...\n";
#count the file lines. we need this to track load progress
open( WC, "grep -c '^>' $TMPFASTA |" );
$linecount = <WC>;
chomp $linecount;
close(WC);
($linecount) = $linecount =~ /^\s*?(\d+)/;
$progress = Term::ProgressBar->new(
{
name => "Approx $linecount sequences",
count => $linecount,
ETA => 'linear',
}
);
$progress->max_update_rate(1);
$next_update = 0;
my $in = Bio::SeqIO->new( -file => $TMPFASTA, '-format' => 'Fasta' );
while ( my $seq = $in->next_seq() ) {
my $name = $seq->id;
my @chado_feature = Bio::Chado::CDBI::Feature->search( { 'name' => $name , organism_id => $chado_organism} );
unless (@chado_feature) { #check synonym and dbxref
my ($dbh) = Bio::Chado::CDBI::DBI->db_handles();
my $sth = $dbh->prepare(
"SELECT feature_id
FROM feature_dbxref fd join dbxref d using (dbxref_id)
WHERE d.accession = ?"
);
$sth->execute($name) or die $sth->errstr;
my $rows = $sth->rows;
if ($rows < 1) {
$sth = $dbh->prepare(
"SELECT feature_id
FROM feature_synonym fs join synonym s using (synonym_id)
WHERE s.name = ?"
);
$sth->execute($name) or die $sth->errstr;
}
while (my $hashref = $sth->fetchrow_hashref) {
my @temp_feat = Bio::Chado::CDBI::Feature->search( {'feature_id' => $$hashref{'feature_id'} } );
push @chado_feature, @temp_feat;
}
}
#no, let's just load the sequence into all of them
#die "couldn't uniquely identify the sequence identified by $name"
# unless (scalar @chado_feature == 1);
$progress->message("no feature for sequence $name")
unless scalar(@chado_feature);
$progress->message("multiple features for sequence $name\n")
if scalar(@chado_feature) > 1;
my $dna = $seq->seq;
undef $seq; #get this thing out of here ASAP, it's using memory
foreach my $f (@chado_feature) {
$f->residues('');
$f->update;
$f->dbi_commit;
$progress->message("copying Bio::Seq sequence to simple scalar variable") if DEBUG;
$progress->message("copied. Bio::Seq object purged to conserve memory") if DEBUG;
my $shredsize = 100_000_000; #don't increase this...
my $offset = 0;
my $dnalen = length($dna);
while ( $offset < $dnalen ) {
$progress->message("loading shred. offset: $offset bp") if DEBUG;
my $shred = substr( $dna, $offset, $shredsize );
$progress->message("${offset}bp loaded") if $offset > 0 and DEBUG;
$sth->execute( $shred, $f->id );
$progress->message("loaded shred") if DEBUG;
$offset += $shredsize;
}
$progress->message("${dnalen}bp loaded") if DEBUG;
$f->update;
$progress->message("pre dbi_commit") if DEBUG;
$f->dbi_commit;
$progress->message("post dbi_commit") if DEBUG;
}
$seqs_loaded++;
$next_update = $progress->update($seqs_loaded)
if ( $seqs_loaded > $next_update );
$progress->update($seqs_loaded) if ( $seqs_loaded >= $next_update );
$progress->update($linecount) if ( $next_update >= $linecount );
}
unlink $TMPFASTA unless $TMPFASTA eq $GFFFILE;
unlink $TMPGFF unless $TMPGFF eq $GFFFILE;
}
return $seqs_loaded;
}
sub load_feature_locations {
my $gff_feature = shift;
my $chado_type = shift;
my $id = shift;
## GFF features are base-oriented, so we must add 1 to the diff
## between the end base and the start base, to get the number of
## intervening bases between the start and end intervals
my $seqlen = ( $gff_feature->end - $gff_feature->start ) + 1;
## we must convert between base-oriented coordinates (GFF3) and
## interbase coordinates (chado)
##
## interbase counts *between* bases (starting from 0)
## GFF3 (and blast, bioperl, etc) count the actual bases (origin 1)
##
##
## 0 1 2 3 4 5 6 7 8 : INTERBASE
## A T G C G T A T
## 1 2 3 4 5 6 7 8 : BIOPERL/GFF
##
## from the above we can see that we need to add/subtract 1 from fmin
## we don't touch fmax
my $fmin = $gff_feature->start - 1; # GFF -> InterBase
my $fmax = $gff_feature->end;
my $frame = $gff_feature->frame eq '.' ? 0 : $gff_feature->frame;
# logic for creating feature.uniquename and feature.name (040414 allenday):
#
# if you decide to change the logic, please email the gmod-schema list before committing.
# many people depend on the convention outlined here.
#
# UNIQUENAME
#
# 1. if --uniquename tag given, use data from that tag, or die if non-existant
# 2. else, if ID tag available, use its value
# 3. else, use a combination of GFF objects primary tag, seq_id, and, if available,
# positional information.
# 4. die, not enough information to generate a uniquename
#
# NAME
#
# 1. use Name tag if available
# 2. else, use ID tag if available
# 3. else, feature has no name
#
my $uniquename = '';
my $name = '';
if( defined($UNIQUENAME) and $gff_feature->has_tag($UNIQUENAME) ) {
($uniquename) = $gff_feature->get_tag_values($UNIQUENAME);
} elsif( defined($UNIQUENAME) ) {
die("The --uniquename tag was specified as '$UNIQUENAME, but a feature was found without this tag");
} elsif( $gff_feature->has_tag('ID') ) {
($uniquename) = $gff_feature->get_tag_values('ID');
} elsif( $gff_feature->primary_tag and $gff_feature->seq_id ) {
my $position = $fmax eq '.' ? '' : ":$fmin..$fmax";
my($parentname) = $gff_feature->has_tag('Parent') ? $gff_feature->get_tag_values('Parent') : '';
$uniquename = sprintf("_%s_%s_%s%s",
$parentname, $gff_feature->primary_tag, $gff_feature->seq_id, $position
);
} else {
die("not enough information available to make a uniquename for $gff_feature");
}
my %feature_attributes = (
organism_id => $chado_organism->id,
type_id => $chado_type->id,
uniquename => $uniquename,
);
my $used_ID_for_Name = 0;
if ( $gff_feature->has_tag('Name') ) {
($name) = $gff_feature->get_tag_values('Name');
$feature_attributes{name} = $name;
} elsif ( $gff_feature->has_tag('ID') ) {
($name) = $gff_feature->get_tag_values('ID');
$feature_attributes{name} = $name;
$used_ID_for_Name = 1;
}
my $chado_feature;
if ( $gff_feature->has_tag('Name') ) {
($name) = $gff_feature->get_tag_values('Name');
}
elsif ( $gff_feature->has_tag('ID') ){
($name) = $gff_feature->get_tag_values('ID');
}
($chado_feature) = Bio::Chado::CDBI::Feature->find_or_create(\%feature_attributes);
if(!defined($chado_feature->seqlen)){
$chado_feature->seqlen($seqlen);
$chado_feature->update;
$chado_feature->dbi_commit;
}
push @transaction, $chado_feature;
if ($used_ID_for_Name) {
load_Name_tag ($gff_feature, $chado_feature);
}
my $source = $gff_feature->source_tag();
if ( $source && $source ne '.') { #make source a feature prop
unless ($gff_source_db) {#create a new db for keeping GFF sources
$gff_source_db = Bio::Chado::CDBI::Db->find_or_create( {
name => 'GFF_source',
description => 'A collection of sources (ie, column 2) from GFF files',
} );
push @transaction, $gff_source_db;
}
unless ($gff_source{$source}) { #now make a dbxref for the source
$gff_source{$source} = Bio::Chado::CDBI::Dbxref->find_or_create( {
db_id => $gff_source_db->id,
accession => $source,
} );
push @transaction, $gff_source{$source};
}
#now tie feature and source together in feature_dbxref
my $feature_dbxref = Bio::Chado::CDBI::Feature_Dbxref->find_or_create( {
feature_id => $chado_feature->id,
dbxref_id => $gff_source{$source}->id
});
push @transaction, $feature_dbxref;
}
$chado_feature->dbxref_id( $dbxref{$id} )
if $gff_feature->has_tag('ID'); # is this the right thing to do here?
$chado_feature->update; # flush updates to this feature object
if ( $id eq $gff_feature->seq_id
or $gff_feature->seq_id eq '.' ) {
#ie, this is a srcfeature (ie, fref) so only create the feature
$srcfeature{$gff_feature->seq_id} = $chado_feature;
return ($chado_feature);
}
# find pre-existing feature locations that were loaded prior
# to this GFF3 file.
if(!$featureloc_locgroup{ $chado_feature->id }){
my $max_locgroup = undef;
foreach my $previous_featureloc (Bio::Chado::CDBI::Featureloc->search(
feature_id => $chado_feature->id,
)){
if($fmin == $previous_featureloc->fmin and
$fmax == $previous_featureloc->fmax and
$previous_featureloc->srcfeature_id == $srcfeature{$gff_feature->seq_id}->id
){
return $chado_feature;
}
$max_locgroup = $max_locgroup > $previous_featureloc->locgroup ? $max_locgroup : $previous_featureloc->locgroup;
}
if(defined($max_locgroup)){
$featureloc_locgroup{ $chado_feature->id } = $max_locgroup;
}
}
# add feature location
$featureloc_locgroup{ $chado_feature->id }++;
my $locgroup = $featureloc_locgroup{ $chado_feature->id };
my($parent) = $gff_feature->has_tag('Parent') ? $gff_feature->get_tag_values('Parent') : ();
if($parent && $featureloc_locgroup{ $feature{$parent} }){
$locgroup = $featureloc_locgroup{ $feature{$parent} };
}
$locgroup ||= 0;
if (DEBUG) {
$progress->message("adding featureloc for gff string:");
$progress->message("\t".$gff_feature->gff_string);
# print STDERR $chado_feature->id , "\t" , $locgroup , "\n";
if($parent){
$progress->message("srcfeature_id: " . Dumper($feature{$parent}));
}
}
my $chado_featureloc = Bio::Chado::CDBI::Featureloc->find_or_create(
{
feature_id => $chado_feature->id,
fmin => $fmin,
fmax => $fmax,
strand => $gff_feature->strand,
phase => $frame,
locgroup => $locgroup,
srcfeature_id => $srcfeature{$gff_feature->seq_id}->id,
}
);
push @transaction, $chado_featureloc;
return ($chado_feature);
}
sub cache_cvterm {
my $name = shift;
my $soid = shift;
#we need an ontology source check here. GO has an obsolete term for 'protein', but we want the
#one from SO.
if ($soid && !$cvterm{$name} ) {
( $cvterm{$name} ) = Bio::Chado::CDBI::Cvterm->search( {
name => $name,
cv_id=> $soid } )
|| Bio::Chado::CDBI::Cvterm->search( {
name => ucfirst($name),
cv_id=> $soid } );
}
if (!$cvterm{$name} and !$soid) {
( $cvterm{$name} )=Bio::Chado::CDBI::Cvterm->search( { name => $name } )
||Bio::Chado::CDBI::Cvterm->search( { name => ucfirst($name) } );
}
$cvterm{$name} = $cvterm{$name}->next()
if defined( $cvterm{$name} )
and $cvterm{$name}->isa('Class::DBI::Iterator');
if ( !$cvterm{$name} && $soid != $so->id ) {
unless ($null_db_id) {
my ($null_db) = Bio::Chado::CDBI::Db->search(
{
name => 'null'
}
);
$null_db_id = $null_db->id;
}
my ($dbxref) = Bio::Chado::CDBI::Dbxref->find_or_create(
{
db_id => $null_db_id,
accession => $auto_cv->name.":".$name,
}
);
( $cvterm{$name} ) = Bio::Chado::CDBI::Cvterm->find_or_create(
{
name => $name,
cv_id => $auto_cv->id,
definition => 'autocreated by gmod_load_gff3.pl',
dbxref_id => $dbxref->id,
}
);
}
die "unable to create a '$name' entry in the cvterm table"
if (!$cvterm{$name} && !$soid );
}
!NO!SUBS!
close OUT or die "Can't close $file: $!";
chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
chdir $origdir;
|