https://github.com/kussell-lab/mcorr
Tip revision: b7481e1b2466be3657556d039a7c1d520d837fae authored by edokussell on 14 November 2019, 05:25:49 UTC
Merge pull request #4 from mingzhi/mingzhi_fix_index_out_of_range
Merge pull request #4 from mingzhi/mingzhi_fix_index_out_of_range
Tip revision: b7481e1
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
}