forked from shenwei356/seqkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
55 lines (51 loc) · 2.27 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module github.com/shenwei356/seqkit/v2
go 1.17
require (
github.com/biogo/biogo v1.0.3
github.com/biogo/hts v1.4.3
github.com/bsipos/thist v1.0.0
github.com/cespare/xxhash/v2 v2.1.2
github.com/cznic/sortutil v0.0.0-20181122101858-f5f958428db8
github.com/dustin/go-humanize v1.0.0
github.com/fsnotify/fsnotify v1.5.1
github.com/iafan/cwalk v0.0.0-20210125030640-586a8832a711
github.com/klauspost/compress v1.15.9
github.com/klauspost/pgzip v1.2.5
github.com/logrusorgru/aurora v2.0.3+incompatible
github.com/mattn/go-colorable v0.1.11
github.com/mattn/go-isatty v0.0.14
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/shenwei356/bio v0.8.1
github.com/shenwei356/breader v0.3.2
github.com/shenwei356/bwt v0.6.1
github.com/shenwei356/go-logging v0.0.0-20171012171522-c6b9702d88ba
github.com/shenwei356/util v0.5.0
github.com/shenwei356/xopen v0.2.2
github.com/smallfish/simpleyaml v0.1.0
github.com/spf13/cobra v1.4.0
github.com/tatsushid/go-prettytable v0.0.0-20141013043238-ed2d14c29939
github.com/twotwotwo/sorts v0.0.0-20160814051341-bf5c1f2b8553
github.com/ulikunitz/xz v0.5.10
)
replace github.com/miekg/dns v1.0.14 => github.com/miekg/dns v1.1.46
require (
github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/edsrzf/mmap-go v1.0.0 // indirect
github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/shenwei356/natsort v0.0.0-20190418160752-600d539c017d // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect
golang.org/x/image v0.0.0-20190802002840-cff245a6509b // indirect
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect
gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)