merge
This commit is contained in:
commit
88cf6706ad
1 changed files with 23 additions and 5 deletions
28
README.md
28
README.md
|
@ -1,10 +1,28 @@
|
|||
# gocomb
|
||||
# GoComb
|
||||
sequence combination tool written in Golang
|
||||
|
||||
# how to use `parser.go`
|
||||
# Requirement
|
||||
|
||||
- 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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue