File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- 0.4.27
1
+ 0.4.28
2
2
3
3
* fix random order in Variant field [ #84 ] ( https://github.com/miRTop/mirtop/issues/83 )
4
+
5
+ 0.4.27
6
+
4
7
* fix possible duplication of lines [ #80 ] ( https://github.com/miRTop/mirtop/issues/80 )
5
8
* accept prefix for gff output [ #84 ] ( https://github.com/miRTop/mirtop/issues/84 )
6
9
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def formatGFF(self):
94
94
value .append ("iso_3p:%s%s" % (direction , size ))
95
95
if not value :
96
96
value = ["NA" ]
97
- return "," .join (list (set (value )))
97
+ return "," .join (sorted ( list (set (value ) )))
98
98
99
99
def format (self , sep = "\t " ):
100
100
"""Create tabular line from variant fields."""
Original file line number Diff line number Diff line change 3
3
import os
4
4
from setuptools import setup , find_packages
5
5
6
- version = '0.4.27 '
6
+ version = '0.4.28 '
7
7
url = 'http://github.com/mirtop/mirtop'
8
8
9
9
You can’t perform that action at this time.
0 commit comments