Opened 18 years ago
Closed 18 years ago
#38 closed defect (fixed)
Parameterparser splits the annotations values parameter incorrect
Reported by: | Johan Enell | Owned by: | Johan Enell |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | onk.lu.se | Keywords: | |
Cc: |
Description
The regexp that splits the annotation values is incorrect. It should be something like '
r
n' and if this is a java String it should be '
r
n' so it can match and split at
r
n. nice...
Plug-in output | java.lang.Exception: Can't find any assay with p_brca_family_status matching [brca1 r nbrca2 r nsporadic] |
at Filter.extractAssays(Filter.java:158) | |
at Main.main(Main.java:67) | |
Parameter | Value |
Annotation type | p_brca_family_status |
Annotation values | brca1 r nbrca2 r nsporadic |
Keep empty values | No |
Note:
See TracTickets
for help on using tickets.
The regexp should match the string \r\n and therefore it should look
r
n.