File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
intervene/modules/pairwise Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# coding: utf-8
2
2
3
3
"""
4
- InterVene : a tool for intersection and visualization of multiple genomic region sets
4
+ Intervene : a tool for intersection and visualization of multiple genomic region sets
5
5
Created on January 10, 2017
6
6
@author: <Aziz Khan>aziz.khan@ncmm.uio.no
7
7
"""
22
22
from intervene import helpers
23
23
24
24
25
+ #parts of the code is adopted from pybedtools
25
26
def get_name (fname ):
26
27
return op .splitext (op .basename (fname ))[0 ]
27
28
@@ -423,7 +424,9 @@ def pairwise_intersection(label_names, options):
423
424
#if options.verbose:
424
425
# sys.stderr.write('Time to construct %s x %s matrix: %.1fs' \
425
426
# % (nfiles, nfiles, (t1 - t0)) + '\n')
426
- keys = sorted (matrix .keys ())
427
+ ## Keyes were sorted until version 0.6.4
428
+ #keys = sorted(matrix.keys())
429
+ keys = matrix .keys ()
427
430
428
431
matrix_file = options .output + '/' + str (options .project )+ '_' + options .command + '_' + options .compute + '_matrix.txt'
429
432
You can’t perform that action at this time.
0 commit comments