Changeset 395
- Timestamp:
- Aug 15, 2007, 11:47:00 AM (16 years ago)
- Location:
- trunk/uk/ac/ebi/AnnotationTypeCvImporter
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/uk/ac/ebi/AnnotationTypeCvImporter/src/uk/ac/ebi/nugo/common/Helper.java
r390 r395 79 79 public static void displayParameterHeader(Set<String> parameterSectionHeader) 80 80 { 81 System.out.println("+++++ List all parameter header +++++"); 82 for (String paramHyb : parameterSectionHeader) 81 for (String paramHyb : parameterSectionHeader) 83 82 { 84 83 System.out.println(paramHyb+"\n"); -
trunk/uk/ac/ebi/AnnotationTypeCvImporter/src/uk/ac/ebi/nugo/plugins/AnnotationTypeCvImporter.java
r384 r395 35 35 import net.sf.basedb.util.parser.Mapper; 36 36 import net.sf.basedb.util.Values; 37 import uk.ac.ebi.nugo.plugins.util.ValueFormatter;38 37 39 38 … … 512 511 if (category != null) 513 512 { 514 List<String> annotationTypeCategory= 515 ValueFormatter.getList(columnMappings.get("categoryColumnMapping").getValue(data),";"); 513 List<String> annotationTypeCategory= Values.getList(columnMappings.get("categoryColumnMapping").getValue(data),";"); 516 514 517 515 for (int i=0, z=annotationTypeCategory.size(); i<z;i++) … … 542 540 if (enumeration) 543 541 annotationType.setValues 544 (Value Formatter.getList(columnMappings.get("cvValueColumnMapping").getValue(data),";"));542 (Values.getList(columnMappings.get("cvValueColumnMapping").getValue(data),";")); 545 543 546 544 itemType= columnMappings.get("itemTypeColumnMapping").getValue(data); … … 548 546 { 549 547 Item[] items=Item.values(); 550 List<String> itemTypes=Value Formatter.getList(columnMappings.get("itemTypeColumnMapping").getValue(data),separator);548 List<String> itemTypes=Values.getList(columnMappings.get("itemTypeColumnMapping").getValue(data),separator); 551 549 for (String itemType: itemTypes) 552 550 {
Note: See TracChangeset
for help on using the changeset viewer.