use strict; use warnings; use DBI; $|=1; # STARTS A NEW biohisham db from scratch.. my $dbfilename = "biohisham.sqlite"; if (-e $dbfilename) { unlink $dbfilename or die "delete of existing $dbfilename failed $!"; } my %attr = ( RaiseError => 1); #auto die with error printout my $dbh = DBI->connect("dbi:SQLite:dbname=$dbfilename","","",\%attr) or die "Couldn't connect to database $dbfilename: " . DBI->errstr; create_table($dbh); populate_table($dbh); ### I don't understand what goes next ???? exit(0); sub populate_table { my $dbh = shift; my $insert = $dbh->prepare ("INSERT INTO bioham ( Time , TH , ErrorTH , H , HD0 , State1 , Proba1 , ErrorProba1 , State2 , Proba2 , ErrorProba2 , State3A , State3B , Proba3 , ErrorProba3 ) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) "); ; #throw away first line - bad column headings $dbh->begin_work; ########## START TRANSACTION ########### while (defined (my $line = )) { next if ($line =~ /^\s*$/); #skip blank lines chomp $line; ## print "$line\n"; #for debugging.... my ($Time , $TH , $ErrorTH , $H , $HD0 , $State1 , $Proba1 , $ErrorProba1 , $State2 , $Proba2 , $ErrorProba2 , $State3A , $State3B , $Proba3 , $ErrorProba3) = split("\t",$line); # input data is missing columns 13,14,15 for some records.. $State2 //= ''; #defines a value if not already defined $Proba2 //= 0; $ErrorProba2 //= 0; $State3B //= ''; $Proba3 //= 0; $ErrorProba3 //= 0; $insert->execute($Time , $TH , $ErrorTH , $H , $HD0 , $State1 , $Proba1 , $ErrorProba1, $State2 , $Proba2 , $ErrorProba2, $State3A , $State3B , $Proba3 , $ErrorProba3); } $dbh->commit; ########## END TRANSACTION ########### } sub create_table { my ($dbh) = shift; # This shows the automatically created column "id". # You can omit this "id" line from table creation. # I explicitly put it here to show that there is such # a unique number gernerated for every line within a # table. # # Every column in the DB has to have a unique name. # I just appended numbers to get unique names. # I doubt that "=" can be in a column name, # hence HD=0 became just HD0 $dbh->do ("CREATE TABLE bioham ( id integer PRIMARY KEY AUTOINCREMENT, Time real, TH real, ErrorTH real, H real, HD0 integer, State1 varchar(150), Proba1 real, ErrorProba1 real, State2 varchar(150), Proba2 real, ErrorProba2 real, State3A varchar(150), State3B varchar(150), Proba3 real, ErrorProba3 real ) "); } __DATA__ Time TH ErrorTH H HD=0 State Proba ErrorProba State Proba ErrorProba State State Proba ErrorProba 0 2.8858 0.0006 13.7791 1 TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- Erythropoietin 1E-06 1E-06 TSP1_2 -- Invasiveness_migration -- Senescence -- P21 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 1E-06 0 TSP1_2 -- Invasiveness_migration -- Senescence -- BCL_XL -- LDHA -- Ang_1 -- S6k1 -- Erythropoietin TSP1_2 -- Invasiveness_migration -- Senescence -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 3E-06 1E-06 0.5 2.3538 0.0008 15.1476 1 TSP1_2 -- Senescence -- Glut1_4 -- BCL_XL -- Enolase_1 -- Ang_1 -- TWIST1 -- Erythropoietin 0 0 TSP1_2 -- Senescence -- Glut1_4 -- BCL_XL -- Permeability_leakiness -- Ang_1 -- Hmox -- Erythropoietin 1E-06 1E-06 TSP1_2 -- Senescence -- BCL_XL -- LDHA -- Enolase_1 -- Ang_1 -- S6k1 TSP1_2 -- Senescence -- LDHA -- Ang_1 -- S6k1 -- Hmox -- Erythropoietin 1E-06 1E-06 1 1.8685 0.001 14.027 1 VEGF -- Ang_2 -- TSP1_2 -- Senescence -- Glut1_4 -- LDHA -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox 1E-06 1E-06 VEGF -- Ang_2 -- TSP1_2 -- Senescence -- P21 -- BCL_XL -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- Ang_2 -- TSP1_2 -- Senescence -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin VEGF -- Ang_2 -- TSP1_2 -- Senescence -- P21 -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- TWIST1 0 0 1.5 1.4099 0.0011 12.1829 1 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- Enolase_1 -- Hmox -- Erythropoietin 0 0 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- LDHA -- Permeability_leakiness -- Enolase_1 -- Erythropoietin 0 0 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Ang_1 -- TWIST1 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- P21 -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 2 1.0082 0.0011 10.2065 1 IL_8 -- Maspin -- Glut1_4 -- P21 -- LDHA -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 IL_8 -- Maspin -- Glut1_4 -- P21 -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 IL_8 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin VEGF -- P21 -- LDHA -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 2.5 0.6879 0.001 8.365 1 VEGF -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 Glut1_4 -- P21 -- BCL_XL -- LDHA 0 0 Ang_2 -- TSP1_2 -- Glut1_4 -- P21 -- LDHA -- Enolase_1 -- Ang_1 -- TWIST1 VEGF -- Ang_2 -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- Erythropoietin 6E-06 3E-06 3 0.4512 0.0009 6.7607 1 IL_8 -- Ang_2 -- TSP1_2 -- Glut1_4 -- LDHA -- Permeability_leakiness -- S6k1 0 0 Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Ang_1 0 0 Maspin -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Ang_1 VEGF -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- TWIST1 2E-06 2E-06 3.5 0.2865 0.0007 5.4133 1 VEGF -- Ang_2 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- TSP1_2 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- BCL_XL -- LDHA -- Permeability_leakiness -- Ang_1 -- S6k1 -- TWIST1 -- Erythropoietin 3E-06 2E-06 4 0.1783 0.0006 4.3068 1 VEGF -- Maspin -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- Maspin -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin VEGF -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 0 0 4.5 0.1101 0.0005 3.4108 1 Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Ang_1 2E-06 2E-06 Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 1E-06 1E-06 Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 5E-06 2E-06 5 0.0687 0.0004 2.6963 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- Erythropoietin 1E-06 1E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Glut1_4 -- P21 -- BCL_XL -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- P21 -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 1E-06 1E-06 5.5 0.0434 0.0003 2.1258 1 VEGF -- Ang_2 -- TSP1_2 -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- TSP1_2 -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Ang_1 0 0 TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Ang_1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- Erythropoietin 1E-06 1E-06 6 0.0278 0.0002 1.6687 1 IL_8 -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- TWIST1 -- Erythropoietin 1E-06 1E-06 IL_8 -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- BCL_XL -- LDHA -- Enolase_1 -- TWIST1 -- Erythropoietin 1E-06 1E-06 TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 9E-06 4E-06 6.5 0.0185 0.0002 1.307 1 Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- TWIST1 -- Erythropoietin 0 0 Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- TWIST1 -- Erythropoietin 0 0 Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- TWIST1 -- Erythropoietin VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- S6k1 -- Hmox -- TWIST1 3E-06 2E-06 7 0.0127 0.0002 1.0198 1 VEGF -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Ang_1 1E-06 1E-06 VEGF -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Ang_1 0 0 VEGF -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- Ang_1 VEGF -- IL_8 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 7.5 0.0087 0.0001 0.7924 1 VEGF -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Ang_1 2E-06 2E-06 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- LDHA -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 0.000101 1.3E-05 8 0.0061 0.0001 0.6144 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Ang_1 0 0 VEGF -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness 8.5 0.0043 0.0001 0.4727 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 9 0.0031 0.0001 0.363 1 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 7.7E-05 1.2E-05 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 5.3E-05 1E-05 IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 9.5 0.0022 0.0001 0.2772 1 VEGF -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- IL_8 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- IL_8 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Ang_1 -- TWIST1 -- Erythropoietin 10 0.0015 0.0001 0.2105 1 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 6E-06 3E-06 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 10.5 0.0011 0 0.1595 1 VEGF -- IL_8 -- Ang_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Ang_1 -- Hmox -- TWIST1 -- Erythropoietin 11 0.0007 0 0.1199 1 VEGF -- IL_8 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 8E-06 4E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 6E-06 3E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- Erythropoietin 11.5 0.0006 0 0.0896 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 12 0.0004 0 0.0664 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0 0 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 4E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 12.5 0.0002 0 0.0486 1 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 4E-06 3E-06 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 13 0.0002 0 0.0353 1 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 13.5 0.0001 0 0.0261 1 VEGF -- IL_8 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Ang_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 14 0.0001 0 0.019 1 VEGF -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 4.9E-05 9E-06 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 14.5 0.0001 0 0.0138 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 6.9E-05 1.1E-05 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 7.7E-05 1.2E-05 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin 15 0 0 0.01 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1.1E-05 5E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin 4E-06 3E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- S6k1 15.5 0 0 0.0073 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 9E-06 4E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- S6k1 16 0 0 0.0051 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- S6k1 -- Hmox -- TWIST1 16.5 0 0 0.0037 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 17 0 0 0.0027 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 17.5 0 0 0.0019 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1E-06 1E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 1E-06 1E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 18 0 0 0.0011 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999932 1.1E-05 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 4E-06 3E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 18.5 0 0 0.0008 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 19 0 0 0.0006 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999964 8E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 19.5 0 0 0.0004 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999976 7E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 20 0 0 0.0003 1 VEGF -- IL_8 -- Ang_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999986 5E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 20.5 0 0 0.0001 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 6E-06 3E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999994 3E-06 21 0 0 0.0001 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 4E-06 3E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999996 3E-06 21.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- Hmox -- TWIST1 -- Erythropoietin 2E-06 2E-06 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 0.999998 2E-06 22 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 22.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 23 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 23.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 24 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 24.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 25 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 25.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 26 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 26.5 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0 27 0 0 0 1 VEGF -- IL_8 -- Ang_2 -- TSP1_2 -- Maspin -- Invasiveness_migration -- Senescence -- Glut1_4 -- P21 -- BCL_XL -- LDHA -- Permeability_leakiness -- Enolase_1 -- S6k1 -- Hmox -- TWIST1 -- Erythropoietin 1 0