Skip to content

Commit 701fbf9

Browse files
committed
Merge branch 'master' of github.com:TransDecoder/TransDecoder into devel
2 parents fdb098d + b7e1501 commit 701fbf9

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

Changelog.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v5.6.0, Apr 07, 2022
2+
- genome propagation of orfs resets orientation for unspliced transcripts with opposite strand orfs.
3+
- speed update from Yanick Paco Hagemeijer
4+
- added option --output_dir | -O to both TransDecoder.LongOrfs and TransDecoder.Predict, as per request, so users can point to specific output directories rather than relying on the default ( basename(target.fasta) + ".transdecoder_dir/").
5+
- removing track name from bed output
6+
- if select single best orf, do selection before removing overlapping preds
7+
- updated get_longest_ORF_per_transcript.pl to match current header formatting
8+
- really retain all blast hits, ignoring overlaps to prev selected entries, unless single_best_orf indicated
9+
- updated genetic code options in help menu
10+
11+
12+
113
## v5.5.0, Oct 22, 2018
214
added option --output_dir | -O to both TransDecoder.LongOrfs and TransDecoder.Predict, as per request, so users can point to specific output directories rather than relying on the default ( basename(target.fasta) + ".transdecoder_dir/").
315

TransDecoder.LongOrfs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use Pipeliner;
2121

2222

2323
#my $VERSION = "__BLEEDING_EDGE__";
24-
my $VERSION = "5.5.0";
24+
my $VERSION = "5.6.0";
2525

2626
my $UTIL_DIR = "$FindBin::RealBin/util";
2727
$ENV{PATH} = "$UTIL_DIR/bin:$ENV{PATH}";

TransDecoder.Predict

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use DelimParser;
2323

2424

2525
#my $VERSION = "__BLEEDING_EDGE__";
26-
my $VERSION = "5.5.0";
26+
my $VERSION = "5.6.0";
2727

2828
my $RETAIN_LONG_ORFS_MIN_LENGTH = 1000000; # so essentially, off by default
2929

util/get_longest_ORF_per_transcript.pl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121

2222
#
2323
# len:365 (+) asmbl_104:2-1096(+)
24-
#
2524

2625
if ($header =~ /len:(\d+) .* (\S+):\d+-\d+\([+-]\)/) {
2726
my $len = $1;

0 commit comments

Comments
 (0)