https://github.com/kussell-lab/mcorr
Tip revision: b983a9686f14fa3f14cc34ffbae19b401f8ef10a authored by Asher Preska Steinberg on 29 October 2021, 14:43:27 UTC
updated README.md
updated README.md
Tip revision: b983a96
corr_results.go
package mcorr
// CorrResult stores a correlation result.
type CorrResult struct {
Lag int
Mean float64
Variance float64
N int
Type string
}
// CorrResults stores a list of CorrResult with an gene ID.
type CorrResults struct {
ID string
Results []CorrResult
}