I recently had a chance to try out the TrAp software from the Yuval Kluger’s Lab:

Strino, F., Parisi, F., Micsinai, M., & Kluger, Y. (2013). TrAp: a tree approach for fingerprinting subclonal tumor composition. Nucleic Acids Res, 41(17), e165–e165

TrAP is an algorithm for inferring the “composition, abundance and evolutionary paths of the underlying cell subpopulations of a tumour.” The only required input to TrAp is an “aggregate frequency vector” where each element corresponds to the frequency of the aberration in the sample cell population.

Installing TrAp

TrAp is developed using Java and comes packaged as a .jar file that you can just download from SourceForge (http://sourceforge.net/projects/klugerlab/files/TrAp/). At the time of this writing, there is version 0.31 listed in SourceForge. Once you download the TrApWithDependencies.jar file, you can run:

java -jar TrApWithDependencies.jar --help

java -jar TrApWithDependencies.jar [ --help ] [ --gui || --text ] [ file ... ]
--gui : Runs TrAp in GUI mode
--text : Runs TrAp in text mode
--help : Prints this help and exits

You can actually run TrAp in either gui mode (using the --gui option) or text mode (using the --text option). If no option is specified, it will start in gui mode by default.

Interestingly, if you run TrAp in gui mode it will return a interface that has a log message that says:

Welcome to the TrAp GUI version 0.3a

Not sure if it should say 0.31 or not? In either case, you can quickly test TrAp in the gui by going Examples -> Example 1. Or if you are running it in --text mode, you can run:

java -jar TrApWithDependencies.jar --text figure1.txt

You can download figure1.txt from the examples folder on SourceForge.

Using TrAp

Under the examples folder, you will find a README.txt file that contains some information on the input files. My understanding is that each line consists of one these keywords:

  1. DATA: defines the type of data to be used
  2. DATATYPE : How errors are defined
  3. DEFAULT_TOLERANCE : The default tolerance to be used
  4. GENERALIZED : Specifies whether the generalized version of the TrAp should be used
  5. MAX_NUMBER : The maximum amount of solutions to be shown
  6. MAX_PERCENT : The maximum percentage of solutions to be shown
  7. SIGNAL: Input of a signal

Following the keywords are the options for that keyword. For instance, here are the contents of the figure1.txt file:

DATATYPE FIXED 0.0000001
SIGNAL WT 1.
SIGNAL A<sub>2</sub> .6
SIGNAL A<sub>3</sub> .4
SIGNAL A<sub>4</sub> .35
SIGNAL A<sub>5</sub> .3
SIGNAL A<sub>6</sub> .1
  • The 1st line indicates the errors are fixed at 0.0000001.
  • The 2nd line is actually a dummy variable for aberration-free cells. As stated in the paper:

    …to ensure that the aberration-free noncancerous cells (wildtype) are included in the solution of the problem, we add one dummy aberration to all the normal and cancerous cells in the sample.

  • Lines 3 and onwards are used to indicate the mutation data input. For example, the 3rd line indicates we have:
    • SIGNAL (i.e. genomic aberration)
    • name: A2 (unique identifier of the genomic aberration). The <sub> tag is an html tag for subscript and is used in the output.
    • value: 0.6 (i.e. cellular frequency of the genomic aberration)

Interpreting TrAp Output

After running TrAp, the output will be stored in a folder that is named TrAp-. For instance, if the input file name is figure1.txt then the output folder would be TrAp-figure1 (without the .txt). It's not clear whether you can control the output directory. Inside this folder:

  1. index.html: An html page which lists possible tree solutions.
  2. imgs: An images folder that holds the png files used in the index.html file. It also contains the corresponding eps files along with the data used to generate these files in csv file format.

For instance, the optimal tree from figure1.txt, using TrAp version 0.31, looks like this:

Optimal Solution from figure1.txt

  • The C0 represents the aberration-free clone.
  • The red nodes in the tree indicate the “observed” subclones (C2, C4, C5, C6) in the tumour sample.
  • The white boxes represent clones (C2) that we don’t observe. More on this below.
  • The mutations each subclone contains is indicated by the mutation identifiers (A2, A3, etc).
  • The percentages represent the portion of the tumour that each subclone represents. The sum of the red boxes should sum to 100%.

How we interpret this tree is as follows:

  1. We started with some aberration-free cells (clone; C0)
  2. These cells acquired mutation A2 giving rise to C1. Independently, another set of cells acquired mutation A3 giving rise to C2. In other words, the C1 cells have mutation A2 but NOT mutation A3. Similar logic applies to C2.
  3. The C1 cells then acquire mutation A4 to give rise to C3. Although not explicitly shown, these C3 cells have both the mutation A2 and A4.
    • Not all C1 cells acquired mutation A4 though. Hence, why we still observe C1 cells and why it is shown in a red box.
  4. On the other branch, some C2 cells then acquire mutation A5 while others acquire mutation A6. The C4 and C5 have mutation A3 in addition to the respective mutations they acquired.
    • All C2 cells either acquired mutation A5 or AA. We never observe any cells with just mutation A3. Hence, C2 appears as a white box and also with 0.0% portion of the tumour.
  5. Ultimately, the tumour consists of 4 observed subclones:
    • C1 with just mutation A2. This clone accounts for 25% of all tumour cells in the population.
    • C3 with mutations A2 and A4. This clone accounts for 35% of all tumour cells in the population.
    • C4 with mutations A3 and A5. This clone accounts for 30% of all tumour cells in the population.
    • C5 with mutations A3 and A6. This clone accounts for 10% of all tumour cells in the population.

This figure is slightly different from the left half of Figure 1 of the paper:

Left Half of Figure 1

The only difference is that ancestor mutations are “pushed down” to show the complete genotype of each subclone. For instance, it explicitly shows C4 has having mutations A2 mutations A4. While the first tree requires that you make the implicit connection that the descendents cells have the mutations of their parent cells.

Multisample Mode

You can also use TrAp in a multisample mode. This is useful in scenarios where you have multiple samples from the same patient such as a sample before treatment and after treatment. You can leverage the multisample mode to construct trees and compare across them. For instance, the following is the right half of Supplemental Figure S6:

Right Half of Supplemental Figure S6

Here we see a “Before Treatment” and an “After Treatment” tree corresponding to two paired samples. This example nicely illustrates how TrAp predicts that subclone C4 survives treatment and acquires new mutations, Relapse (5), to form the subclone C5. To use multisample mode, you need to have an input file for each sample. You can see an example of this is in the examples/multisample folder which contains the input files:

  1. fig_s6_1.txt
  2. fig_s6_2.txt
  3. fig_s6_3.txt

The input file format is exactly the same as listed above. The key is each data entry needs to appear in each sample input file with the same identifier. This will allow the multisample mode to match up the data across multiple samples. Then to run, we use the following command:

java -cp TrApWithDependencies.jar multitree.FilterMultiTrees fig_s6_{1..3}.txt

This will end up producing a combined folder with the same contents as single sample mode. The exception is that you will see trees for each sample.

The multisample mode currently only appears to work in version 0.3. If you run it in version 0.31, you will see the following error message:

Error: Could not find or load main class multitree.FilterMultiTrees

Multisample Mode Update

I reported this bug to the developers of TrAp and they have fixed this problem now in version 0.32. You can run multisample mode in version 0.32 like this:

java -cp TrApWithDependencies.jar --multisample fig_s6_{1..3}.txt

Summary

Hope this post helps you get started on constructing phylogenetic trees from your mutation data and interpreting the outputs of TrAp. I would recommend the following references for more information on TrAp: