Program gto_segment

The gto_segment segments a filtered sequence.

For help type:

./gto_segment -h


In the following subsections, we explain the input and output paramters.

Input parameters

The gto_segment program needs two streams for the computation, namely the input and output standard. The input stream is a numeric file.

The attribution is given according to:

Usage: ./gto_segment [options] [[--] args]
or: ./gto_segment [options]

It segments a filtered sequence.

-h, --help show this help message and exit

Basic options
-t, --threshold= The segment threshold
< input.num Input numeric file (stdin)
> output Output the segment file (stdout)

Example: ./gto_segment -t < input.num > output


An example of such an input file is:

1 1.77
5 2.18
10 2.32
15 3.15
20 2.52
25 4.43
30 1.23


Output

The output of the gto_segment program is the interval of values ​​below the threshold.

Using the input above with a threshold of 3, an output example for this is the following:

0:10