# HG changeset patch # User Vimalkumar Velayudhan # Date 1445342705 -3600 # Node ID f40b0b26e7667dd79959072cf03e2b9e15eec01e First commit diff -r 000000000000 -r f40b0b26e766 RUST_metafootprints.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/RUST_metafootprints.xml Tue Oct 20 13:05:05 2015 +0100 @@ -0,0 +1,76 @@ + + (Step 1) + + RUST + samtools + + + #if str( $metafootprint_type ) == "Nucleotide" + python \${RUST_PATH}/RUST_nucleotide.py $input $alignment $offset $include_lengths $html_file.files_path $html_file $output1 + #end if + #if str( $metafootprint_type ) == "Codon" + python \${RUST_PATH}/RUST_codon.py $input $alignment $offset $include_lengths $html_file.files_path $html_file $output1 + #end if + #if str( $metafootprint_type ) == "Amino" + python \${RUST_PATH}/RUST_amino.py $input $alignment $offset $include_lengths $html_file.files_path $html_file $output1 + #end if + #if str( $metafootprint_type ) == "Dipeptide" + python \${RUST_PATH}/RUST_dipeptide.py $input $alignment $offset $include_lengths $html_file.files_path $html_file $output1 + #end if + #if str( $metafootprint_type ) == "Tripeptide" + python \${RUST_PATH}/RUST_tripeptide.py $input $alignment $offset $include_lengths $html_file.files_path $html_file $output1 + #end if + + + + + + + + + + + + + + + + + + + + + + + + + +**What it does** + +This tool produces a RUST metafootprint profile that reveals the influence of mRNA features such as codons/amino acids on the relative read density in the sample across the entire ribosome and nascent peptide region. The Kullback-Leibler divergence across these sites is also provided. + +------ + +**Transcriptome file** + +By default the RUST analysis is carried out on the longest ORF in each transcript. Alternatively the user may provide alignments to the entire transcripts with information of both the translation initiation and termination sites. These are to be provided along side the name of each transcript in Transcriptome file. It must be in a tab delimited and in the following format ">transcript name{tab}initiation site coordinate{tab}termination site coordinate". + +The alignments used to produce the RUST values start 120 nucleotides after the start codon and finish 60 nucleotides before the stop codon. Transcripts with ORF length less than 230 nucleotides and those whose reading frame is not divisible by three are ignored. + +------ + +**Citation** + +Surveying the relative impact of mRNA features on local ribosome profiling read density in 28 datasets. +Patrick O'Connor, Dmitry Andreev, Pavel Baranov +bioRxiv doi: http://dx.doi.org/10.1101/018762 + + + + + diff -r 000000000000 -r f40b0b26e766 footprint_codons.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/footprint_codons.xml Tue Oct 20 13:05:05 2015 +0100 @@ -0,0 +1,45 @@ + + + (Step 3) + + RUST + samtools + + python \${RUST_PATH}/footprint_codons.py $input $alignment $offset $include_lengths $observed_codon $output1 + + + + + + + + + + + + + + + + + +**What it does** + +Uses the observed codon RUST ratios of 12 sites (A-site-6 to A-site+5) to calculate alignment probabilities along the elongation region of each transcript. It then compares the similarity between the expected and observed ribosome profiles using both Spearman's and Pearson's correlation coefficients. This is returned in a csv file. + +------ + +**Citation** + +Surveying the relative impact of mRNA features on local ribosome profiling read density in 28 datasets. +Patrick O'Connor, Dmitry Andreev, Pavel Baranov +bioRxiv doi: http://dx.doi.org/10.1101/018762 + + + + diff -r 000000000000 -r f40b0b26e766 observed_expected.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/observed_expected.xml Tue Oct 20 13:05:05 2015 +0100 @@ -0,0 +1,58 @@ + + + (Step 4) + + RUST + samtools + + python \${RUST_PATH}/observed_expected.py $input $alignment $offset $include_lengths $observed_codon $transcript_name $html_file.files_path $html_file + + + len(value.split(',')) == 1 + + + + + + + + + + + + + + + + + + + + + + + + + +**What it does** + +Returns both the observed and and expected profiles for a transcript specified by the user in a csv file. A image of both profiles is provided. The data is provided for 120 nucleotides after the start codon and 60 nucleotides before the stop codon. + +------ + +**Citation** + +Surveying the relative impact of mRNA features on local ribosome profiling read density in 28 datasets. +Patrick O'Connor, Dmitry Andreev, Pavel Baranov +bioRxiv doi: http://dx.doi.org/10.1101/018762 + + + + diff -r 000000000000 -r f40b0b26e766 synergy_31.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/synergy_31.xml Tue Oct 20 13:05:05 2015 +0100 @@ -0,0 +1,33 @@ + + (Step 2) + + RUST + samtools + + python \${RUST_PATH}/synergy_31.py $observed_amino $observed_tripeptide $output1 + + + + + + + + + + + +**What it does** + +Compares the observed RUST ratios for tripeptides to that expected based on that obtained with amino acids to detect cases of synergism in adjacent residues. Returns a csv file with the best candidates for synergism. + +------ + +**Citation** + +Surveying the relative impact of mRNA features on local ribosome profiling read density in 28 datasets. +Patrick O'Connor, Dmitry Andreev, Pavel Baranov +bioRxiv doi: http://dx.doi.org/10.1101/018762 + + + + diff -r 000000000000 -r f40b0b26e766 tool_dependencies.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_dependencies.xml Tue Oct 20 13:05:05 2015 +0100 @@ -0,0 +1,18 @@ + + + + + + RUST==0.1.0 + + $INSTALL_DIR/venv/lib/python2.7/site-packages/RUST + + + + + + + + + +