Changeset 8533 for trunk/MagicSoft
- Timestamp:
- 05/21/07 14:16:43 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8532 r8533 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2007/05/21 Daniela Dorner 22 23 * datacenter/db/showplots-ds.php: 24 - also off-sequences are plottet now 25 - by plotting the link to the plot in colour, it is marked, whether 26 a on sequence (green) or a off sequence is plotted 27 28 29 20 30 2007/05/21 Daniel Hoehne 21 31 -
trunk/MagicSoft/Mars/datacenter/db/showplots-ds.php
r8463 r8533 44 44 $sequoff=""; 45 45 if (!empty($offpos)) 46 $sequoff=s ubstr($dataset, $offpos+13, $possource-($offpos+13));46 $sequoff=split(" ", trim(substr($dataset, $offpos+13, $possource-($offpos+13)))); 47 47 if (empty($offpos)) 48 48 $offpos=$possource; 49 $sequon=substr($dataset, $onpos+12, $offpos-($onpos+12)); 50 $sequences=split(" ", trim($sequon)); 49 $sequon=split(" ", trim(substr($dataset, $onpos+12, $offpos-($onpos+12)))); 50 $sequences=$sequon; 51 if (!empty($sequoff)) 52 $sequences=array_merge($sequences,$sequoff); 51 53 if ($seq!=0 && !in_array($seq, $sequences)) 52 54 $seq=0; … … 104 106 printf("</td>\n</tr>\n<tr>\n<td align='center'>\n"); 105 107 if (!empty($seq)) 108 { 109 if (in_array($seq, $sequon)) 110 printf("<font color='green'>\n"); 111 else 112 printf("<font color='red'>\n"); 106 113 printf("%s <img src='%s'>", $plot, $plot); 114 } 107 115 else 108 116 printf("You have to insert a dataset number in the first field.");
Note:
See TracChangeset
for help on using the changeset viewer.