Skip to content

Commit

Permalink
Added __version__ info to scripts for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
medmaca committed Feb 18, 2020
1 parent 40ba919 commit 3ae81cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PGCNA/pgcna-multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
median correlation matrix.
"""
from __future__ import print_function
__author__="Matthew Care"
__version__ = "1.0.0"

import sys
import os
Expand Down
2 changes: 2 additions & 0 deletions PGCNA/pgcna.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
to process very large expression data-sets.
"""
from __future__ import print_function
__author__="Matthew Care"
__version__ = "1.0.0"

import sys
import os
Expand Down
3 changes: 3 additions & 0 deletions PGCNA2/pgcna2.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
over the Louvain community detection method used originally.
"""
__author__="Matthew Care"
__version__ = "2.0.0"

import sys
import os
import argparse
Expand Down

0 comments on commit 3ae81cf

Please sign in to comment.