Skip to content

Commit 987ca8b

Browse files
committed
Merge remote-tracking branch 'gyorilab/master' into depmap
2 parents bad7214 + b4ae1e7 commit 987ca8b

File tree

18 files changed

+521
-72
lines changed

18 files changed

+521
-72
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ Git fork/PR workflow
22
--------------------
33
This repository uses the [forking model](https://www.atlassian.com/git/tutorials/comparing-workflows/forking-workflow)
44
for collaboration. In this model,
5-
each developer forks the main (sorgerlab/indra) repository, pushes code
5+
each developer forks the main (gyorilab/indra) repository, pushes code
66
only to branches in their own fork, and then submits pull requests to
7-
sorgerlab. After cloning your own fork of `indra`, you should add `sorgerlab`
7+
gyorilab. After cloning your own fork of `indra`, you should add `gyorilab`
88
as a remote to be able to track the latest changes by doing
99

1010
```
11-
git remote add sorgerlab https://github.com/sorgerlab/indra.git
11+
git remote add gyorilab https://github.com/gyorilab/indra.git
1212
```
1313

1414
When a PR is submitted from a branch, any further changes can be pushed
@@ -17,9 +17,9 @@ are automatically appended to the PR. Please always check the box on Github
1717
allowing the maintainers of the repo to make changes to the PR.
1818

1919
In addition, as a convention, we only merge PRs whose branches are rebased
20-
on top of the latest sorgerlab/master. This means that instead of merging
21-
sorgerlab/master into your own branch to resolve conflicts, you should always
22-
rebase on top of sorgerlab/master and force push your branches if
20+
on top of the latest gyorilab/master. This means that instead of merging
21+
gyorilab/master into your own branch to resolve conflicts, you should always
22+
rebase on top of gyorilab/master and force push your branches if
2323
needed (you can do this even if a PR from that branch is already open).
2424
Consistent with this convention, in general, you should not use `git pull`
2525
to update your local fork. Rather, use `git fetch --all`,
@@ -32,7 +32,7 @@ some commits before merging.
3232

3333
Pull requests
3434
-------------
35-
Always submit PRs via the sorgerlab repository.
35+
Always submit PRs via the gyorilab repository.
3636
Give your PR a concise and clear title that describes without excessive detail
3737
what the PR does. You should give more details in the description, pointing
3838
out the important changes made and any additional remarks that are relevant.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014, INDRA Developers.
1+
Copyright (c) 2025, INDRA Developers.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# INDRA
22

33
[![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)
4-
[![Build](https://github.com/sorgerlab/indra/workflows/Tests/badge.svg)](https://github.com/sorgerlab/indra/actions)
4+
[![Build](https://github.com/gyorilab/indra/workflows/Tests/badge.svg)](https://github.com/gyorilab/indra/actions)
55
[![Documentation](https://readthedocs.org/projects/indra/badge/?version=latest)](https://indra.readthedocs.io/en/latest/?badge=latest)
66
[![PyPI version](https://badge.fury.io/py/indra.svg)](https://badge.fury.io/py/indra)
77
[![Python 3](https://img.shields.io/pypi/pyversions/indra.svg)](https://www.python.org/downloads/release/python-357/)
88

9-
<img align="left" src="https://raw.githubusercontent.com/sorgerlab/indra/master/doc/indra_logo.png" width="300" height="224" />
9+
<img align="left" src="https://raw.githubusercontent.com/gyorilab/indra/master/doc/indra_logo.png" width="300" height="224" />
1010

1111
INDRA (Integrated Network and Dynamical Reasoning Assembler) is an automated
1212
model assembly system, originally developed for molecular systems biology and
1313
then generalized to other domains (see [INDRA
14-
World](https://github.com/indralab/indra_world)). INDRA draws on natural
14+
World](https://github.com/gyorilab/indra_world)). INDRA draws on natural
1515
language processing systems and structured databases to collect mechanistic and
1616
causal assertions, represents them in a standardized form (INDRA Statements),
1717
and assembles them into various modeling formalisms including causal graphs and
@@ -265,7 +265,7 @@ full compatibility is currently only tested with 3.8-3.10.
265265
The preferred way to install INDRA is by pointing pip to the source repository
266266
as
267267

268-
$ pip install git+https://github.com/sorgerlab/indra.git
268+
$ pip install git+https://github.com/gyorilab/indra.git
269269

270270
Releases of INDRA are also available on
271271
[PyPI](https://pip.pypa.io/en/latest/installing/), you can install the latest

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@
6969
# built documents.
7070
#
7171
# The short X.Y version.
72-
version = '1.23'
72+
version = '1.24'
7373
# The full version, including alpha/beta/rc tags.
74-
release = '1.23.0'
74+
release = '1.24.0'
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation
7777
# for a list of supported languages.

doc/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ To install directly from Github, do:
3232

3333
.. code-block:: bash
3434
35-
pip install git+https://github.com/sorgerlab/indra.git
35+
pip install git+https://github.com/gyorilab/indra.git
3636
3737
Or first clone the repository to a local folder and use pip to install
3838
INDRA from there locally:
3939

4040
.. code-block:: bash
4141
42-
git clone https://github.com/sorgerlab/indra.git
42+
git clone https://github.com/gyorilab/indra.git
4343
cd indra
4444
pip install .
4545
@@ -50,7 +50,7 @@ as a system-wide package.
5050

5151
.. code-block:: bash
5252
53-
git clone https://github.com/sorgerlab/indra.git
53+
git clone https://github.com/gyorilab/indra.git
5454
5555
To be able to use INDRA this way, you need
5656
to make sure that all its requirements are installed. To be able to

doc/tutorials/gene_network.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ You can also read more about the pre-assembly
139139
process in the
140140
`preassembly module documentation <../modules/preassembler/index.html>`_ and
141141
in the `GitHub documentation
142-
<https://github.com/sorgerlab/indra#internal-knowledge-assembly>`_
142+
<https://github.com/gyorilab/indra#internal-knowledge-assembly>`_
143143

144144
Assemble the statements into a network model
145145
--------------------------------------------
@@ -212,6 +212,6 @@ and look into the `natural language modeling tutorial <nl_modeling.html>`_
212212
which uses PySB models.
213213

214214
Read more about all assembly output formats in the `README <https://github
215-
.com/sorgerlab/indra#output-model-assemblers>`_ and in the `module
215+
.com/gyorilab/indra#output-model-assemblers>`_ and in the `module
216216
references <https://indra.readthedocs.io/en/latest/modules/assemblers/index
217217
.html>`_.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN python3 -m venv $VENV_PATH
3434
ENV PATH="$VENV_PATH/bin:$PATH"
3535

3636
# Install INDRA and dependencies
37-
RUN git clone https://github.com/sorgerlab/indra.git && \
37+
RUN git clone https://github.com/gyorilab/indra.git && \
3838
cd indra && \
3939
git checkout $BUILD_BRANCH && \
4040
git branch && \

indra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging
33
import os
44
import sys
5-
__version__ = '1.23.0'
5+
__version__ = '1.24.0'
66

77
__all__ = ['assemblers', 'belief', 'databases', 'explanation', 'literature',
88
'mechlinker', 'preassembler', 'sources', 'tools', 'util']

indra/assemblers/pysb/bmi_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def make_repository_component(self):
379379
component.append(au)
380380

381381
hu = etree.Element('help_url')
382-
hu.text = 'http://github.com/sorgerlab/indra'
382+
hu.text = 'http://github.com/gyorilab/indra'
383383
component.append(hu)
384384

385385
for tag in ('cfg_template', 'time_step_type', 'time_units',

indra/databases/identifiers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
'OMIM', 'LSPCI', 'UPLOC', 'BFO', 'CCLE', 'CLO', 'GENBANK', 'CALOHA',
3838
'DRUGBANK.SALT', 'SMILES', 'NIHREPORTER.PROJECT', 'GOOGLE.PATENT', 'SPINE',
3939
'VO', 'EMAPA', 'INO', 'CIDO', 'OAE', 'OHPI', 'PHIPO', 'NLM', 'ISNI',
40+
'RXNORM', 'HEMONC', 'DRUGSATFDA.NDA'
4041
}
4142

4243
# These are reverse mappings from identifiers.org namespaces to INDRA

0 commit comments

Comments
 (0)