Skip to content

Commit

Permalink
Transfered to evolbioinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericlemoine committed Mar 22, 2019
1 parent f2713de commit b4619c2
Show file tree
Hide file tree
Showing 113 changed files with 229 additions and 229 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ DEP_EXECUTABLE := ${GOPATH}/bin/dep
GO_EXECUTABLE := go
VERSION := $(shell git describe --abbrev=10 --dirty --always --tags)
DIST_DIRS := find * -type d -exec
VERSION_PACKAGE := github.com/fredericlemoine/gotree/cmd.Version
VERSION_PACKAGE := github.com/evolbioinfo/gotree/cmd.Version
NAME := gotree
PACKAGE:=github.com/fredericlemoine/gotree
PACKAGE:=github.com/evolbioinfo/gotree

all: dep build test

Expand Down
4 changes: 2 additions & 2 deletions acr/acr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"testing"

"github.com/fredericlemoine/gotree/io/newick"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io/newick"
"github.com/evolbioinfo/gotree/tree"
)

func TestACRDELTRANParsimony(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion acr/parsimony.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sort"
"strings"

"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/tree"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions asr/parsimony.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math/rand"

"github.com/fredericlemoine/goalign/align"
"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions cmd/acr.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"regexp"
"strings"

"github.com/fredericlemoine/gotree/acr"
"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/acr"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
10 changes: 5 additions & 5 deletions cmd/annotate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import (
"os"
"strings"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/io/fileutils"
"github.com/fredericlemoine/gotree/mutils"
"github.com/fredericlemoine/gotree/support"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/io/fileutils"
"github.com/evolbioinfo/gotree/mutils"
"github.com/evolbioinfo/gotree/support"
"github.com/evolbioinfo/gotree/tree"

"github.com/spf13/cobra"
)
Expand Down
8 changes: 4 additions & 4 deletions cmd/asr.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import (
"github.com/fredericlemoine/goalign/align"
"github.com/fredericlemoine/goalign/io/fasta"
"github.com/fredericlemoine/goalign/io/phylip"
"github.com/fredericlemoine/gotree/asr"
"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/io/utils"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/asr"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/io/utils"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/balancedtree.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/bipartitiontree.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/booster.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
goio "io"
"time"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/support"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/support"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/brlencut.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/caterpillartree.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package cmd
import (
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/classical.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
goio "io"
"time"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/support"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/support"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/clearcomments.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/clearlength.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/clearsupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/collapsebrlen.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/collapsedepth.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/collapsesingle.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/collapsesupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/comparedistances.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/support"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/support"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/compareedges.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/support"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/support"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/comparetips.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/comparetrees.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
goio "io"
"runtime"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
)

var comparetreeidentical bool
Expand Down
2 changes: 1 addition & 1 deletion cmd/computesupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/evolbioinfo/gotree/io"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/cyjs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os"
"path/filepath"

"github.com/fredericlemoine/gotree/draw"
"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/draw"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/divide.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/dlncbi.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cmd
import (
"os"

"github.com/fredericlemoine/gotree/download"
"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/download"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/edges.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/edgetrees.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"sync"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/itoldl.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"errors"
"io/ioutil"

"github.com/fredericlemoine/gotree/download"
"github.com/fredericlemoine/gotree/io"
"github.com/evolbioinfo/gotree/download"
"github.com/evolbioinfo/gotree/io"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/itolup.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"os"
"time"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/fredericlemoine/gotree/upload"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/evolbioinfo/gotree/upload"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/matrix.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
goio "io"
"os"

"github.com/fredericlemoine/gotree/io"
"github.com/fredericlemoine/gotree/tree"
"github.com/evolbioinfo/gotree/io"
"github.com/evolbioinfo/gotree/tree"
"github.com/spf13/cobra"
)

Expand Down
Loading

0 comments on commit b4619c2

Please sign in to comment.