Skip to content
Snippets Groups Projects
Commit d90b352d authored by David Hrbáč's avatar David Hrbáč
Browse files

Fixes it4i-admins/docs.it4i#51

parent e153f3ad
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import csv import csv
import collections import collections
from distutils.version import LooseVersion
def get_data(filename): def get_data(filename):
'''function to read the data form the input csv file to use in the analysis''' '''function to read the data form the input csv file to use in the analysis'''
...@@ -65,11 +66,12 @@ for m,i in sorted(counts.items()): ...@@ -65,11 +66,12 @@ for m,i in sorted(counts.items()):
for m in sorted(software.items(), key=lambda i: i[0].lower()): for m in sorted(software.items(), key=lambda i: i[0].lower()):
software = m[0] software = m[0]
versions = '' versions = []
clusters = '' clusters = []
#print '</br>'.join(m[1].keys()) for key in sorted(m[1], key=LooseVersion ):
#print '</br>'.join(m[1].values()) versions.append(key)
print "| %s | %s | %s |" % (software, '</br>'.join(m[1].keys()), '</br>'.join(m[1].values())) clusters.append(m[1][key])
print "| %s | %s | %s |" % (software, '</br>'.join(versions), '</br>'.join(clusters))
print print
print '---8<--- "modules_matrix_search.md"' print '---8<--- "modules_matrix_search.md"'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment