ggca 0.4.0

Computes efficiently the correlation (Pearson, Spearman or Kendall) and the p-value (two-sided) between all the pairs from two datasets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM konstin2/maturin:v0.12.9

# Installs GSL 2.6
WORKDIR /
COPY gsl-2.6.tar.gz /gsl-2.6.tar.gz
RUN tar xvzf gsl-2.6.tar.gz
WORKDIR /gsl-2.6
RUN ./configure && make && make install && make clean

WORKDIR /io

ENTRYPOINT [""]