Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
huyustats committed Sep 24, 2021
1 parent a61280d commit c20de95
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/lib/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
4 changes: 2 additions & 2 deletions build/scripts-3.7/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
Binary file removed dist/liqa-1.1.20.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/liqa-1.1.21.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion liqa.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: liqa
Version: 1.1.20
Version: 1.1.21
Summary: A statistical tool to quantify isoform-specific expression using long-read RNA-seq
Home-page: https://github.com/WGLab/LIQA
Author: Yu Hu
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="liqa",
version="1.1.20",
version="1.1.21",
author="Yu Hu",
author_email="[email protected]",
description="A statistical tool to quantify isoform-specific expression using long-read RNA-seq",
Expand Down

0 comments on commit c20de95

Please sign in to comment.