-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
565 additions
and
908 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ | |
|
||
# General information about the project. | ||
project = "PyNIDM" | ||
copyright = "2018, [email protected], [email protected], [email protected], [email protected]" | ||
copyright = "2018, [email protected], [email protected], [email protected], [email protected]" # noqa: A001 | ||
author = "[email protected], [email protected], [email protected], [email protected]" | ||
|
||
# The version info for the project you're documenting, acts as replacement for | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
from __future__ import absolute_import, division, print_function | ||
import __main__ | ||
|
||
__version__ = "3.9.7" | ||
|
||
try: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
Added Python provtoolbox support | ||
10/3/17 Modified Namespace to be QualifiedName for provtoolbox support...left most of the NIDM-Results Namespaces the same | ||
@author: Sanu Ann Abraham <[email protected]> | ||
05/04/2018 Added python ProvONE support | ||
05/04/2018 Added python ProvONE support | ||
""" | ||
from collections import namedtuple | ||
from prov.constants import PROV_ATTRIBUTE_LITERALS, PROV_ATTRIBUTE_QNAMES, PROV_N_MAP | ||
|
@@ -604,7 +604,7 @@ def __init__(self, namespaces=None): | |
) | ||
|
||
|
||
####ADDED BY DBK to make searching NIDM-Experiment Terms easier...temporary, should be done in the OWL file##### | ||
# ADDED BY DBK to make searching NIDM-Experiment Terms easier...temporary, should be done in the OWL file # | ||
nidm_experiment_terms = [ | ||
NIDM_PROJECT, | ||
NIDM_PROJECT_IDENTIFIER, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ | |
from cgi import escape | ||
|
||
from datetime import datetime | ||
from prov.dot import DOT_PROV_STYLE | ||
from prov.model import ( | ||
PROV_ACTIVITY, | ||
PROV_AGENT, | ||
|
@@ -47,7 +46,28 @@ | |
) | ||
import pydot | ||
import six | ||
from .Constants import * | ||
from .Constants import ( | ||
PROVONE_ATTRIBUTE_QNAMES, | ||
PROVONE_CLTODESTP, | ||
PROVONE_DATA, | ||
PROVONE_DATALINK, | ||
PROVONE_DATAONLINK, | ||
PROVONE_DLTOINPORT, | ||
PROVONE_DLTOOUTPORT, | ||
PROVONE_HASINPORT, | ||
PROVONE_HASOUTPORT, | ||
PROVONE_HASSUBPROCESS, | ||
PROVONE_INPORTTODL, | ||
PROVONE_INPUTPORT, | ||
PROVONE_ISPARTOF, | ||
PROVONE_OUTPORTTODL, | ||
PROVONE_OUTPUTPORT, | ||
PROVONE_PROCESS, | ||
PROVONE_PROCESSEXEC, | ||
PROVONE_SEQCTRLLINK, | ||
PROVONE_SOURCEPTOCL, | ||
PROVONE_USER, | ||
) | ||
|
||
__author__ = "Sanu Ann Abraham" | ||
__email__ = "[email protected]" | ||
|
@@ -381,8 +401,8 @@ def _get_node(qname): | |
relations.append(rec) | ||
|
||
if not bundle.is_bundle(): | ||
for bundle in bundle.bundles: | ||
_add_bundle(bundle) | ||
for b in bundle.bundles: | ||
_add_bundle(b) | ||
|
||
for rec in relations: | ||
args = rec.args | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.