Hi,
I am wondering if there is a way to get the list of all possible stats described here:
|
mean = 0, /*!< The mean value */ |
|
average = 0, /*!< The mean value */ |
|
stdev = 1, /*!< The standard deviation of the values */ |
|
dev = 1, /*!< The standard deviation of the values */ |
|
max = 2, /*!< The maximum value */ |
|
min = 3, /*!< The minimum value */ |
|
cov = 4, /*!< The number of bases covered */ |
|
coverage = 4, /*!<The number of bases covered */ |
|
sum = 5 /*!< The sum of per-base values */ |
For example,
import pyBigWig
possible_stats = pyBigWig.stats_cases
possible_stats
['mean', 'average', 'max', 'min', 'stdev', 'dev', 'coverage', 'cov', 'sum']
Or something like this...
Many thanks
Hi,
I am wondering if there is a way to get the list of all possible stats described here:
pyBigWig/libBigWig/bigWig.h
Lines 99 to 107 in 705b074
For example,
Or something like this...
Many thanks