Opened 7 years ago
Closed 7 years ago
#1052 closed defect (fixed)
The FrozenTissueDate importer fails if ProvID is the first or last column
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | minor | Milestone: | Reggie v4.18 |
Component: | net.sf.basedb.reggie | Keywords: | |
Cc: |
Description
Error message:
Could not find header line containing 'ProvID' column
The reason is that the wizard is actually looking for {tab}ProvID{tab}
which fails if there is no tab before or after the column.
The workaround is to re-arrange the file so that the 'ProvID' column is somewhere in the middle.
Note:
See TracTickets
for help on using tickets.
(In [4815]) Fixes #1052: The FrozenTissueDate importer fails if ProvID is the first or last column
Removed {tabs} from the regular expression. Added a check that we actually find a 'ProvID' column (since 'ProvID2' would also match but cause a NullPointerException later).