Galaxy | Tool Preview

Arithmetic Operations (version 1.0.0)

What it does

This program implements arithmetic operations on tabular files data. The program takes three inputs:

Notes:

Example

Let us have the first input file as follows:

 5   4   0
10  11  12
 1   3   1
 1   2   1
 2   0   4

And the second input file as follows:

5   4   4
2   5   8
1   2   1
3   2   5
2   4   4

Running the program and choosing "Addition" as an arithmetic operation will give the following output:

10   8   4
12  16  20
 2   5   2
 4   4   6
 4   4   8