My group is trying to keep track of metadata in a shared research project. Information such as age, sex, disease status, etc. Before, this was collaboratively done via spreadsheets managed through Microsoft Excel. It is generally known that Excel's autoconversions cause problems however. Moreover, the fact that anyone wanting to insert a new datapoint could, by mistake, edit an earlier entry is also problematic.
The problems of using Excel in biology have been mentioned before, but alternatives are hard to find. Using OpenOffice or LibreOffice is not likely to solve the issue, and statistical software like R is meant for data analysis, not data entry.
I have started to look for alternatives for managing metadata. I'm looking for software that matches the following requirements:
- Importantly, inputting data should be easy for users not used to programming. It should be as intuitive as spreadsheet software or a web interface. In this way, it is accessible to both wet lab and dry lab staff.
- Allows to input new entries, without being able to modify earlier entries. Only admin can modify earlier entries.
- Checks for input, for example only specific naming for cancer types. For example, not 'LC', but 'lung cancer'.
- No autoconversions
- Exports to open data formats
- (Easy joins/merges with similar tables. However this can also be done via external software like R.)
Does anyone have suggestions for software for managing metadata?
This question has some similarity to Management software for my samples?, but quite some time has passed since that was asked and I think my question is more narrowly asked by revolving around Excel and my requirements.
At the end of the day you will find that you will need to design something yourself since practices at each facility differ a lot and users are not keen to change their protocols. Sounds like you can look at various open-source LIMS options and then plan to use just the components/parts you need.
Thank you for your first point about requirements differing too much between groups to allow for a simple standard answer. However, as I'm sure that my requirements regarding accessibility for lab biologists, modification tracking, autoconversions and export are very common, I still hoped to find some suggestions that make the search for a suitable system easier for the next person trying to get away from Excel.
Regarding a LIMS, I thought it might be more than we need in our situation, as all information can for now be contained in three simple tables. Also, the question Is there a Lims that doesn't suck? made me a bit pessimistic, although that discussion is very old. Indeed, I think this falls in the category Lab Information Management, but I want to get closer to what the properties of such a LIMS should be. And perhaps which LIMS to start from.
For basic usage a CRUD application with dataTables in the front end and PHP+MySQL back-end will do the job.
Yes, this description does seem to meet my requirement. But could you make it more concrete in the form of a tool, such as genomax in his comment?