SeqCombGo/README.md

25 lines
364 B
Markdown
Raw Normal View History

2022-01-01 16:25:21 +08:00
# gocomb
sequence combination tool written in Golang
2022-01-04 20:11:31 +08:00
# 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
2022-01-01 16:25:21 +08:00
```
2022-01-04 20:11:31 +08:00
./gocomb import1.fas import2.fas
./gocomb -o export.nex import1.fas import2.fas
2022-01-01 16:25:21 +08:00
```