Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ Run nosetests -v to perform tests and diagnoses on functions.
Changelog
---------

v0.1.0
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haven't we already got a v1.0.0?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, HEAD on master is already v1.0.1.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What was added in v1.0.1?
It should be in the this Changelog

- Added visualization routines to drawing (effective graph and conditional effective graph)

v0.1
- Canalization methods ported to Cython

Expand Down
12 changes: 12 additions & 0 deletions cana/datasets/bio.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,18 @@
_path = os.path.dirname(os.path.realpath(__file__))
""" Make sure we know what the current directory is """

def BT474_ErbB_S():
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you think a simpler name may be preferable? this one looks a handful.

"""Boolean network model of the control of HCC1954 Breast Cell Line Short-term ErbB Network model

The network is defined in :cite:`der Heyde:2014`.

Returns:
(BooleanNetwork)
"""
return BooleanNetwork.from_file(
_path + "/cell_collective/BT474 Breast Cell Line Short-term ErbB Network.txt", name="BT474 Breast Cell Line Short-term ErbB", keep_constants=True
)


def THALIANA():
"""Boolean network model of the control of flower morphogenesis in Arabidopsis thaliana
Expand Down
Loading
Loading