File: stats_main_cmdline.yaggo

package info (click to toggle)
jellyfish 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,992 kB
  • ctags: 7,766
  • sloc: cpp: 35,036; ruby: 523; sh: 433; makefile: 257; python: 116; perl: 15
file content (28 lines) | stat: -rw-r--r-- 831 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
purpose "Statistics"
package "jellyfish stats"
description "Display some statistics about the k-mers in the hash:

Unique:    Number of k-mers which occur only once.
Distinct:  Number of k-mers, not counting multiplicity.
Total:     Number of k-mers, including multiplicity.
Max_count: Maximum number of occurrence of a k-mer.
"

option("recompute", "r") {
  description "Recompute"
  flag; off; hidden }
option("lower-count", "L") {
  description "Don't consider k-mer with count < lower-count"
  uint64; default 0 }
option("upper-count", "U") {
  description "Don't consider k-mer with count > upper-count (2^64)"
  uint64 }
option("verbose", "v") {
  description "Verbose"
  flag; off }
option("output", "o") {
  description "Output file"
  c_string }
arg("db") {
  description "Jellyfish database"
  c_string; typestr "path" }