Пример #1
0
 public MetabolismNetwork(MetabolismProperties ps) {
   props = ps;
   logger = props.getLogger("MetabolismNetwork");
   entries = new Vector<MetabolicEntry>();
   locations = new TreeSet<String>();
   reactions = new TreeMap<String, Rxn>();
   orfSets = new TreeMap<String, LogicalORFTree>();
   totalORFs = new TreeSet<String>();
 }