Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
huyustats committed Sep 23, 2021
1 parent 6fdca39 commit a61280d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 131 deletions.
129 changes: 0 additions & 129 deletions liqa_src/#testDAS.R#

This file was deleted.

4 changes: 2 additions & 2 deletions liqa_src/PreProcess_gtf.pl
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
my @sss = split(";", $exonstarts{$gene}{$trans});
my @eee = split(";", $exonends{$gene}{$trans});

my @sss_sort = sort @sss;
my @eee_sort = sort @eee;
my @sss_sort = sort {$a <=> $b} @sss;
my @eee_sort = sort {$a <=> $b} @eee;

my $starts;
my $ends;
Expand Down

0 comments on commit a61280d

Please sign in to comment.