You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 31, 2023. It is now read-only.
1. Add in controls for probabilistic allele identification at the project level
5
-
2. refactor and pull control of a project into service
6
-
3. refactor REST API into sockets based API
7
-
4. Add in notification functionality
8
-
3
+
## Introduction
4
+
MicroSPAT is a collection of tools for semi-automated analysis of raw capillary electrophoresis (CE) data output by the ABI 3730. MicroSPAT integrates several features including a plate view for quality checking, automated ladder identification, sample based association of FSA data to keep data organized in a logical manner, automated bin generation using a clustering algorithm, automated artifact estimator generation, automated quantification bias estimation, and automated genotyping of samples with the option of manual curation.
5
+
6
+
## DEV WARNING
7
+
Under Very Heavy Development -- Features will change, things WILL break
8
+
9
+
## Installation
10
+
Download the latest build zip, unzip, and navigate to the folder. Using either pip or conda, install the required packages either through requirements.txt or using the conda environment manager and the environment.yml file. If you plan to install through pip, I highly suggest using an environment manager, but this is beyond the scope of this tutorial. Once all packages are installed, execute the following
11
+
12
+
```
13
+
python manage.py initDB
14
+
```
15
+
16
+
This initializes the application with the HDROX400 Ladder
17
+
18
+
## Running
19
+
While in the MicroSPAT directory, execute the following
20
+
21
+
```
22
+
python manage.py runsockets
23
+
```
24
+
25
+
Then open Chrome (Only tested in Chrome to date, no guarantee for other browsers at this time) and navigate to:
26
+
```
27
+
http://localhost:5000
28
+
```
29
+
30
+
This will bring up MicroSPAT for the first time. At this point, you can then start to populate the application with your data.
0 commit comments