Skip to content

Commit

Permalink
v0.2.3.1
Browse files Browse the repository at this point in the history
- improved decision-making regarding implementation in add_attributes
- enabled multiprocessing in kp-finder, brute-force search
- moved the --threads option in kp-finder only.
- the edge attribute "node_names" was changed to "adjacent_nodes"
- renamed file handles in importer and exporter scripts for graph and attributes methods
- redirected output of importers and exporters to stdout instead of log
- general cleanup of stdout messages
- removed handled TODOs
- restored the 'adjmat' default in 'pyntacle generate'
  • Loading branch information
m.truglio committed Aug 9, 2018
1 parent 7d29124 commit 284deb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyntacle.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,7 @@ def generate(self):
"generated.")

parser.add_argument("-u", "--output-format", metavar="",
choices=format_dictionary.keys(),
required=True,
choices=format_dictionary.keys(), default="adjmat",
help='Desired output format for the output communities. \'adjmat\' for '
'adjacency matrix, \'edgelist\' for edge list, \'sif\' for '
'Simple Interaction format, \'dot\' for DOT file, \'bin\' for binary file. '
Expand Down

0 comments on commit 284deb2

Please sign in to comment.