Hello!

To see the file structure, click on "tree".

Note that updates take place every 10 minutes, commits may not be seen immediately.
svn path=/; revision=530
authorpreecej <preecej@localhost>
Wed, 5 Mar 2014 00:25:08 +0000 (00:25 +0000)
committerpreecej <preecej@localhost>
Wed, 5 Mar 2014 00:25:08 +0000 (00:25 +0000)
Personnel/preecej/perl_singletons/reactome_chebi_mapping/reactome_chebi_mapping.pl
Personnel/preecej/python_singletons/map_os_2_at.py [new file with mode: 0755]

index 81a260cceaada6e6ebad452116c0a7569c266fab..696e95cd07f5f6af70c138cf54c02a1fa9d42cde 100755 (executable)
@@ -53,7 +53,7 @@ my $sorted_no_match_file = "1.2_reactome_entries_with_no_chebi_match.txt";
 # options
 my $allow_obsolete_terms = 1;
 my $allow_cyc = 0;
-my $allow_synonyms = 0;
+my $allow_synonyms = 1;
 
 my $ont; # chebi ontology
 
diff --git a/Personnel/preecej/python_singletons/map_os_2_at.py b/Personnel/preecej/python_singletons/map_os_2_at.py
new file mode 100755 (executable)
index 0000000..931db6e
--- /dev/null
@@ -0,0 +1,12 @@
+#!/bin/python
+
+# open the ensemble plants and rap::irgsp mapping files and generate a 2-col mapping of AT to LOC loci
+
+path = "/home/preecej/Documents/projects/plant_reactome/plant_reactome_site/projection/rice_to_arabidopsis/"
+
+ENS_FILE = open(path + "ensemble_plants_40_ath_to_rice_IRGSP.tab")
+RAP_IRGSP_FILE = open(path + "loc_rap_mappings.txt")
+
+for line in ENS_FILE:
+    print line
+