Mercurial > repos > mheinzl > fsd
comparison fsd.py @ 3:648d5df50ca8 draft
planemo upload for repository https://github.com/monikaheinzl/galaxyProject/tree/master/tools/fsd commit 86722bdca280f0bbe6b2a9342734edcb484ca789
| author | mheinzl |
|---|---|
| date | Wed, 09 May 2018 09:01:18 -0400 |
| parents | 9736b9d04a0b |
| children | 69f47e0b804e |
comparison
equal
deleted
inserted
replaced
| 2:a4ad1ebc4b32 | 3:648d5df50ca8 |
|---|---|
| 19 from matplotlib.backends.backend_pdf import PdfPages | 19 from matplotlib.backends.backend_pdf import PdfPages |
| 20 import argparse | 20 import argparse |
| 21 import sys | 21 import sys |
| 22 import os | 22 import os |
| 23 import re | 23 import re |
| 24 from Cheetah.Template import Template | |
| 25 | 24 |
| 26 def readFileReferenceFree(file): | 25 def readFileReferenceFree(file): |
| 27 with open(file, 'r') as dest_f: | 26 with open(file, 'r') as dest_f: |
| 28 data_array = numpy.genfromtxt(dest_f, skip_header=0, delimiter='\t', comments='#', dtype='string') | 27 data_array = numpy.genfromtxt(dest_f, skip_header=0, delimiter='\t', comments='#', dtype='string') |
| 29 return(data_array) | 28 return(data_array) |
