File: runMe.sh

package info (click to toggle)
transdecoder 5.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 29,088 kB
  • sloc: perl: 11,574; python: 271; sh: 147; makefile: 73
file content (21 lines) | stat: -rwxr-xr-x 675 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

if [ ! -e Trinity.fasta ]; then
    gunzip -c Trinity.fasta.gz > Trinity.fasta
    gunzip -c genome_alignments.gmap.gff3.gz > genome_alignments.gmap.gff3
fi

../../TransDecoder.LongOrfs -t Trinity.fasta $*

../../TransDecoder.Predict -t Trinity.fasta 

# gmap was used to align the Trinity.fasta transcripts to the genome,
# using the gmap '-f 3' output formatting parameter, generating file 'genome_alignments.gmap.gff3'

../../util/cdna_alignment_orf_to_genome_orf.pl  Trinity.fasta.transdecoder.gff3 genome_alignments.gmap.gff3 Trinity.fasta  > Trinity.fasta.transdecoder.genome.gff3


../../util/fasta_prot_checker.pl Trinity.fasta.transdecoder.pep


exit 0