https://github.com/miso-lims/walkthroughs
Walkthroughs for common MISO tasks
https://github.com/miso-lims/walkthroughs
documentation lims miso walkthrough workshop
Last synced: 4 months ago
JSON representation
Walkthroughs for common MISO tasks
- Host: GitHub
- URL: https://github.com/miso-lims/walkthroughs
- Owner: miso-lims
- License: mit
- Created: 2015-11-25T21:33:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-04-22T14:29:29.000Z (about 1 year ago)
- Last Synced: 2025-04-22T15:38:12.897Z (about 1 year ago)
- Topics: documentation, lims, miso, walkthrough, workshop
- Language: HTML
- Homepage: https://miso-lims.github.io/walkthroughs/
- Size: 207 MB
- Stars: 2
- Watchers: 12
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MISO OICR Documentation and workshop
Home of the training documents for the
[miso-lims](https://github.com/TGAC/miso-lims) laboratory information management
system for the [Ontario Institute for Cancer Research (OICR)](http://www.oicr.on.ca).
* [Training Workshop](http://oicr-gsi.github.io/miso-docs-oicr/)
This tutorial leads users through the steps required to enter data in MISO. Users may
complete all sections of the tutorial, or just the sections which apply to their
lab tasks.
## Fork
To configure this document for your own MISO training, first fork this repo.
You can rename it if you like.
Then, update the `_config.yml` file, replacing site-specific values.
Finally, deploy the tutorial to
[GitHub Pages](https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/)
or elsewhere.
## Build
Requirements:
* Ruby 2.x
* Bundler
* Jekyll
Build:
```
bundle install
```
On MacOS, Bundler may fail to install libv8. To work around this, you can
install `v8-315` using Homebrew (or otherwise) and then install the dependencies
that use it using the following before trying `bundle install` again.
```
gem install libv8 -v '3.16.14.19' -- --with-system-v8
gem install therubyracer -v '0.12.3' -- --with-v8-dir=/usr/local/opt/v8@3.15
```
## Run
```
bundle exec jekyll serve
```