Update README.md
This commit is contained in:
parent
20d8d7d691
commit
7ad59058e3
1 changed files with 18 additions and 4 deletions
22
README.md
22
README.md
|
@ -1,10 +1,24 @@
|
||||||
# gocomb
|
# gocomb
|
||||||
sequence combination tool written in Golang
|
sequence combination tool written in Golang
|
||||||
|
|
||||||
# how to use `parser.go`
|
# compile
|
||||||
|
```
|
||||||
|
git clone git@github.com:MalacoLab/gocomb.git
|
||||||
|
cd gocomb
|
||||||
|
go build
|
||||||
|
```
|
||||||
|
|
||||||
|
# how to use
|
||||||
|
|
||||||
|
## convert fas to nex
|
||||||
|
```
|
||||||
|
./gocomb -o output.nex import.fas
|
||||||
|
./gocomb import.fas
|
||||||
|
```
|
||||||
|
|
||||||
|
## combine serveral fas to single nex
|
||||||
|
|
||||||
```
|
```
|
||||||
parser xxx.fas
|
./gocomb import1.fas import2.fas
|
||||||
parser xxx.fas yyy.fas
|
./gocomb -o export.nex import1.fas import2.fas
|
||||||
parser -o export.nex xxx.fas yyy.fas
|
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue