========
GRASS (Graph Regularized Annotation via Semi-Supervised learning) is a tool for annotating de novo transcriptome assemblies using data from closely related species with previously annotated genomes. GRASS efficiently utilizes information from three major sources:
GRASS depends on the following external programs (to be available in the environment where it runs):
Further, it depends on the following Python packages:
If you wish to use the default labeling method in GRASS and allow it to run BLAST on the input FASTA files, ensure that you have the BLAST utilities installed (ncbi-blast+).
Also ensure that junto and MCL are installed. For junto, download the library source code from the github page and set JUNTO_DIR to be the top level directory of junto. Next, add the directory JUNTO_DIR/bin to your path "export PATH="$PATH:$JUNTO_DIR/bin". A ready-to-install tarball for MCL can be downloaded from their webpage.
To install GRASS via pip (along with the dependencies getting installed automatically), you can use:
> pip install grass
You should now have a grass
executable in your path. You can test this with the following command:
> grass --help
You should see the following output:
Usage: grass [OPTIONS]
Options:
--config TEXT Config file describing the experimental setup
--help Show this message and exit.
The code for GRASS automatically runs RapClust to generate the mapping ambiguity graph. However, Sailfish or Salmon need to be run on the input samples to provide the information required in order to generate this graph. Hence, there are two main steps involved:
--dumpEq
option. This will tell Sailfish to dump a representation of the fragment equivalence classes that it computed during quasi-mapping of each sample. Apart from this additional option, Sailfish should be run normally (i.e. passing in whatever other options are appropriate for your samples).Let's illustrate this pipeline with a particular example, the following experimental data from Trapnell et al.:
Accession | Condition | Replicate |
---|---|---|
SRR493366 | scramble | 1 |
SRR493367 | scramble | 2 |
SRR493368 | scramble | 3 |
SRR493369 | HOXA1KD | 1 |
SRR493370 | HOXA1KD | 2 |
SRR493371 | HOXA1KD | 3 |
We'll assume that the raw read files reside in the directory reads
. Assuming that you've already built the index on the transcriptome you wish to quantify, a typical run of Sailfish on this data would look something like.
> parallel -j 6 "samp={}; sailfish quant -i index -l IU -1 <(gunzip -c reads/{$samp}_1.fq.gz) -2 <(gunzip -c reads/{$samp}_2.fq.gz) -o {$samp}_quant --dumpEq -p 4" ::: SRR493366 SRR493367 SRR493368 SRR4933669 SRR493370 SRR493371
This will quantify each sample, and write the result to the directory samplename_quant
.
Our test species in this example is human and the closely related annotated species is chimp. Given this setup, we're now ready to run GRASS. First, we have to make an appropriate config file, an example config file looks like following:
conditions:
- Control
- HOXA1 Knockdown
samples:
Control:
- SRR493366_quant
- SRR493367_quant
- SRR493368_quant
HOXA1 Knockdown:
- SRR493369_quant
- SRR493370_quant
- SRR493371_quant
outdir: human_rapclust
Along with the above information GRASS requires related species information in any one of the following formats:
You can pass the FASTA files to GRASS in the following way and it will run a two-way BLAST assigning seed labels to contigs. Ensure that the FASTA files are passed in the following order (the first is from the test species, second from the annotated species)
fasta:
- human.transcripts.fa
- chimp.transcripts.fa
If you have already run BLAST, you can pass the output files (in BLAST outfmt 6). Again, ensure that the first one is BLAST of contigs from test species against the annotated species and the second is BLAST of contigs from annotated species against the test species.
labels:
- human.chimpdb.txt
- chimp.humandb.txt
If you wish to use a pre-processed label file, you can pass a two-column file where the first is the set of contigs from the test species and second the label. If a contig has multiple labels in the input file, one will be chosen arbitrarily as seed.
labels:
- human.labels.txt
So a sample config file provided with the FASTA files (example 1) would look something like this:
conditions:
- Control
- HOXA1 Knockdown
samples:
Control:
- SRR493366_quant
- SRR493367_quant
- SRR493368_quant
HOXA1 Knockdown:
- SRR493369_quant
- SRR493370_quant
- SRR493371_quant
fasta:
- human.transcripts.fa
- chimp.transcripts.fa
outdir: human_rapclust
Once we have our config.yaml
file ready with the above information we can run GRASS. GRASS uses YAML to specify its configuration files. The configuration file must contain the following three entries; conditions
, samples
, and outdir
and only one of the following two: fasta
or labels
. The conditions
entry lists the conditions present in the sample. The samples
entry is a nested dictionary of lists; there is a key corrseponding to each condition listed in the conditions
entry, and the value associated with this key is a list of quantification directories of the samples for this condition. Finally, the outdir
entry specifies where the output and intermediate files should be stored. The last entry has been explained above. Given these, you can run GRASS as:
> grass --config config.yaml
This will process the samples, generate the mapping ambiguity graph, filter it according to the conditions, process the contig labels, run the iterative GRASS algorithm to improve the graph and cluster the resuling graph using MCL internally. Once GRASS is finished, the human_rapclust
directory should exist. It will contain the following files which are results from GRASS plus the graph file from RapClust:
seedLabels.txt, grassGraph.txt, grass.mag.clust, grass.mag.flat.clust, grass.stats.json, mag.filt.net, finalLabels.txt, stats.json
The most important file for downstream processing is grass.mag.flat.clust
. It contains the computed cluster information in a "transcript-to-gene" mapping formation that is compatible with downstream tools like tximport. The file seedLabels.txt
contains the initial contig to gene labeling and finalLabels.txt
contains the labels after running GRASS and a contig may have multiple labels in this file, each with an associated score. The rest of the files are for internal use in the algorithm.
Experiments in Graph-based Semi-Supervised Learning Methods for Class-Instance Acquisition. Partha Pratim Talukdar, Fernando Pereira, ACL 2010
Differential analysis of gene regulation at transcript resolution with RNA-seq by Cole Trapnell, David G Henderickson, Martin Savageau, Loyal Goff, John L Rinn and Lior Pachter, Nature Biotechnology 31, 46–53 (2013).
Stijn van Dongen. Graph Clustering by Flow Simulation. PhD thesis, University of Utrecht, 2000
Charlotte Soneson, Michael I Love, and Mark D Robinson. Differential analyses for rna-seq: transcript-level estimates improve gene-level inferences. F1000Research, 4, 2015.