All Projects → miso-lims → Miso Lims

miso-lims / Miso Lims

Licence: gpl-3.0
MISO: An open-source LIMS for NGS sequencing centres

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Miso Lims

Genomicsqlite
Genomics Extension for SQLite
Stars: ✭ 90 (-31.3%)
Mutual labels:  genomics
Slivar
variant expressions, annotation, and filtering for great good.
Stars: ✭ 110 (-16.03%)
Mutual labels:  genomics
Circlator
A tool to circularize genome assemblies
Stars: ✭ 121 (-7.63%)
Mutual labels:  genomics
Gcp For Bioinformatics
GCP Essentials for Bioinformatics Researchers
Stars: ✭ 95 (-27.48%)
Mutual labels:  genomics
Genomics
A collection of scripts and notes related to genomics and bioinformatics
Stars: ✭ 101 (-22.9%)
Mutual labels:  genomics
Cooler
A cool place to store your Hi-C
Stars: ✭ 112 (-14.5%)
Mutual labels:  genomics
Igv Snapshot Automator
Script to automatically create and run IGV snapshot batchscripts
Stars: ✭ 83 (-36.64%)
Mutual labels:  genomics
Somalier
fast sample-swap and relatedness checks on BAMs/CRAMs/VCFs/GVCFs... "like damn that is one smart wine guy"
Stars: ✭ 128 (-2.29%)
Mutual labels:  genomics
Msprime
Simulate genealogical trees and genomic sequence data using population genetic models
Stars: ✭ 103 (-21.37%)
Mutual labels:  genomics
Hicexplorer
HiCExplorer is a powerful and easy to use set of tools to process, normalize and visualize Hi-C data.
Stars: ✭ 116 (-11.45%)
Mutual labels:  genomics
Chipseq pipeline
AQUAS TF and histone ChIP-seq pipeline
Stars: ✭ 96 (-26.72%)
Mutual labels:  genomics
Smudgeplot
Inference of ploidy and heterozygosity structure using whole genome sequencing data
Stars: ✭ 98 (-25.19%)
Mutual labels:  genomics
Qqman
An R package for creating Q-Q and manhattan plots from GWAS results
Stars: ✭ 115 (-12.21%)
Mutual labels:  genomics
Bio
Bioinformatics library for .NET
Stars: ✭ 90 (-31.3%)
Mutual labels:  genomics
Kmer Cnt
Code examples of fast and simple k-mer counters for tutorial purposes
Stars: ✭ 124 (-5.34%)
Mutual labels:  genomics
Dkm
Dynamic Kernel Matching (DKM) for Classifying Data with Non-conforming Features
Stars: ✭ 86 (-34.35%)
Mutual labels:  genomics
Cgranges
A C/C++ library for fast interval overlap queries (with a "bedtools coverage" example)
Stars: ✭ 111 (-15.27%)
Mutual labels:  genomics
Benchmarking Tools
Repository for the GA4GH Benchmarking Team work developing standardized benchmarking methods for germline small variant calls
Stars: ✭ 129 (-1.53%)
Mutual labels:  genomics
Sarek
Detect germline or somatic variants from normal or tumour/normal whole-genome or targeted sequencing
Stars: ✭ 124 (-5.34%)
Mutual labels:  genomics
Ngless
NGLess: NGS with less work
Stars: ✭ 115 (-12.21%)
Mutual labels:  genomics

Build Status Quality Gate DOI Gitter Documentation Status

MISO: An open source LIMS for small-to-large scale sequencing centres

© 2019. Ontario Institute for Cancer Research, Toronto, Canada, Earlham Institute, Norwich, UK.

MISO project contacts: Morgan Taschuk, Robert Davey

MISO is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

MISO is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with MISO. If not, see http://www.gnu.org/licenses/.

Trying MISO

Docker

The simplest way to get MISO up and running quickly is to use Docker compose. Images of the most recent MISO releases are available on Docker Hub in the misolims organisation.

Prerequisites

Install required dependencies:

  1. Install Docker 18.06.0+
  2. If necessary, install Docker Compose

Download and extract the .docker directory from Github into miso-lims-compose.

wget https://github.com/miso-lims/miso-lims/archive/master.zip
unzip master.zip 'miso-lims-master/.docker/*'
mv miso-lims-master/.docker miso-lims-compose
rm -r master.zip miso-lims-master/

You are now ready to run MISO.

Quick Start

To bring up a demo environment, install the pre-requisites above and run the following commands.

Plain sample mode has a straightforward Sample -> Library -> Library Aliquot -> Pool workflow and is sufficient for basic laboratory tracking for sequencing.

Launch the plain sample demo with docker-compose:

cd miso-lims-compose
export MISO_DB_USER=tgaclims && export MISO_DB=lims && export MISO_DB_PASSWORD_FILE=./.miso_db_password && export MISO_TAG=latest
echo "changeme" > ./.miso_db_password
docker-compose -f demo.plain.yml up

Detailed sample mode has all of the features of plain sample mode, plus it allows users to build a hierarchy of Samples (e.g. Identity -> Tissue -> Slide -> gDNA (stock) -> gDNA (aliquot) and also includes alias autogeneration.

Launch the detailed sample demo with docker-compose:

cd miso-lims-compose
export MISO_DB_USER=tgaclims && export MISO_DB=lims && export MISO_DB_PASSWORD_FILE=./.miso_db_password && export MISO_TAG=latest
echo "changeme" > ./.miso_db_password
docker-compose -f demo.detailed.yml up

For both environments, navigate to http://localhost and use the credentials admin/admin.

Once you are finished with the container, make sure to run docker-compose -f <compose.yml> down, where <compose.yml> is either demo.plain.yml or demo.detailed.yml. This will clean up the instances and networks and release their resources to the host operating system.

These compose files are intended as a demonstration and not a permanent installation.

Please see the Docker Compose Guide for more information on configuring the containers and the compose files.

User Tutorial

There are tutorials available to introduce and train new users to MISO's functionality.

Some of the resources (MISO URL, ways of contacting the MISO administrators) can be changed by forking and configuring the tutorial repository to suit your lab's specific needs.

Running an Instance of MISO

To run your own MISO instance in the long term, download the latest release.

Installation and configuration details can be found in the MISO building and deploying guide.

Contact and Community

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].