https://github.com/kussell-lab/mcorr
Tip revision: 30891abb239f54c493e3d27596a93050022024b4 authored by Mingzhi Lin on 23 August 2017, 14:12:22 UTC
add mcorr-recom-genes
add mcorr-recom-genes
Tip revision: 30891ab
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
}