From 7ad59058e3f4ad3932854006e8a177d7b7025361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=88=E5=AD=A3=E8=8A=B1=E4=B8=AD=E7=9A=84=E6=98=9F?= =?UTF-8?q?=E8=BE=B0?= Date: Tue, 4 Jan 2022 12:11:31 +0000 Subject: [PATCH 1/3] Update README.md --- README.md | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 613d399..470eeac 100644 --- a/README.md +++ b/README.md @@ -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 ``` From d64cd4816af68d4304075f667cc9b789750e279a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=88=E5=AD=A3=E8=8A=B1=E4=B8=AD=E7=9A=84=E6=98=9F?= =?UTF-8?q?=E8=BE=B0?= Date: Tue, 4 Jan 2022 12:16:02 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 470eeac..2451e96 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # gocomb sequence combination tool written in Golang +# Requirement + +- go + # compile ``` git clone git@github.com:MalacoLab/gocomb.git From 8c709679d77f82c388c49933b6554c3176f38c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=88=E5=AD=A3=E8=8A=B1=E4=B8=AD=E7=9A=84=E6=98=9F?= =?UTF-8?q?=E8=BE=B0?= Date: Tue, 4 Jan 2022 12:19:57 +0000 Subject: [PATCH 3/3] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2451e96..0b833e6 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,26 @@ -# gocomb +# GoComb sequence combination tool written in Golang # Requirement - go -# compile +# Compile ``` git clone git@github.com:MalacoLab/gocomb.git cd gocomb go build ``` -# how to use +# How to use -## convert fas to nex +## Convert fas to nex ``` ./gocomb -o output.nex import.fas ./gocomb import.fas ``` -## combine serveral fas to single nex +## Combine serveral fas to single nex ``` ./gocomb import1.fas import2.fas