Update README.md

This commit is contained in:
kuoi 2022-01-04 12:11:31 +00:00 committed by GitHub
parent 20d8d7d691
commit 7ad59058e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 4 deletions

View File

@ -1,10 +1,24 @@
# gocomb
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
parser xxx.fas yyy.fas
parser -o export.nex xxx.fas yyy.fas
./gocomb import1.fas import2.fas
./gocomb -o export.nex import1.fas import2.fas
```