Skip to content

Commit 6d4a3d0

Browse files
Update mgi.php
changed separator to vertical bar for genopheno data
1 parent c4a74dd commit 6d4a3d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: mgi/mgi.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,14 @@ function MGI_GenePheno()
266266
}
267267

268268
if($a[5]) {
269-
$pmids = explode(",",$a[5]);
269+
$pmids = explode("|",$a[5]);
270270
foreach($pmids AS $pmid) {
271271
parent::addRDF(
272272
parent::triplify($id,$this->getVoc()."x-pubmed","pubmed:".$pmid)
273273
);
274274
}
275275
}
276-
$b = explode(",",$a[6]);
276+
$b = explode("|",$a[6]);
277277
foreach($b AS $marker) {
278278
parent::addRDF(
279279
parent::triplify($id,$this->getVoc()."marker",$marker).

0 commit comments

Comments
 (0)