SCGLIMS is a Lab Information Management System developed for the Ettema Lab by BILS.
The database implements the workflow of the Ettema Lab:
If your lab has a similar workflow you might be able to use the SCGLIMS as is. Otherwise an amout of tweaking might be required in which case we would recommend forking the repository and only using certain elements.
- Crappy Documentation: http://scglims.rtfd.org
- Demo: http://bit.ly/scglims-heroku (for admin user/pass inodb)
- Presentation: http://bit.ly/limstalk
- GitHub: https://github.com/BILS/SCGLIMS/
- Free software: GPLv3 License
- Python 2.7+
- Django 1.6.1
- Local: https://github.com/BILS/SCGLIMS/blob/master/lims_project/requirements/local.txt
- Development: https://github.com/BILS/SCGLIMS/blob/master/lims_project/requirements/development.txt
Clone the repository to your computer:
git clone https://github.com/BILS/SCGLIMS
Local installation:
pip install -r lims_project/requirements/local.txt
Without example data:
cd lims_project python manage.py syncdb --settings=lims_project.settings.local && \ python manage.py runserver 127.0.0.1:8000 --settings=lims_project.settings.local
With example data:
cd lims_project python manage.py syncdb --settings=lims_project.settings.local && \ python manage.py loaddata example --settings=lims_project.settings.local && \ python manage.py runserver 127.0.0.1:8000 --settings=lims_project.settings.local
Contributions are greatly appreciated, please read the contribution instructions.