-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# TQSLE | ||
TQSLE v1.0 released | ||
|
||
author: Huiguang Yi ([email protected]) | ||
|
||
Current version is based on x86_64 linux system | ||
|
||
Dependencies: | ||
## Dependencies: | ||
1. gcc && gfortran | ||
2. intel mkl BLAS (Recommended) or OpenBLAS or native BLAS (not Recommended) | ||
3. SuiteSparse (need CHOLMOD module) | ||
|
||
Install: | ||
## Install: | ||
|
||
If intel mkl is available | ||
``` | ||
|
@@ -22,3 +24,11 @@ Else Use OpenBLAS in the repo | |
``` | ||
make | ||
``` | ||
## Usage: | ||
``` | ||
# index construction | ||
tqsle index -f<mean fragment size> -i <reference.fa> -o <outpath> | ||
# quantification | ||
tqsle quant -i <indexpath> -o <outputpath> | ||
``` |