changeset 3:41887967ef14 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/genetrack commit 19ea4feff5ccf3744c549b9a67259947a1cb90ba
author iuc
date Sat, 21 Jan 2017 14:41:43 -0500
parents aaca27a5263b
children b41a4bb828a3
files genetrack.py genetrack_util.py genetrack_util.pyc
diffstat 3 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/genetrack.py	Fri Jan 13 10:45:36 2017 -0500
+++ b/genetrack.py	Sat Jan 21 14:41:43 2017 -0500
@@ -4,9 +4,10 @@
 Input: either scidx or gff format of reads
 Output: Called peaks in gff format
 """
+import csv
 import optparse
-import csv
 import os
+
 import genetrack_util
 
 CHUNK_SIZE = 10000000
--- a/genetrack_util.py	Fri Jan 13 10:45:36 2017 -0500
+++ b/genetrack_util.py	Sat Jan 21 14:41:43 2017 -0500
@@ -1,11 +1,12 @@
 import bisect
 import math
-import numpy
 import re
 import subprocess
 import sys
 import tempfile
 
+import numpy
+
 GFF_EXT = 'gff'
 SCIDX_EXT = 'scidx'
 
Binary file genetrack_util.pyc has changed