-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgo.mod
28 lines (25 loc) · 978 Bytes
/
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
module github.com/quwubin/paired-kmers
go 1.18
require (
github.com/RoaringBitmap/roaring v1.2.1
github.com/neilotoole/errgroup v0.1.6
github.com/shenwei356/bio v0.7.1
github.com/shenwei356/kmers v0.1.0
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/spf13/pflag v1.0.5
)
require (
github.com/bits-and-blooms/bitset v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/klauspost/compress v1.15.0 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/shenwei356/util v0.5.0 // indirect
github.com/shenwei356/xopen v0.2.1 // indirect
github.com/ulikunitz/xz v0.5.10 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)