معرفی شرکت ها


fairworkflows-0.3.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

FAIRWorkflows python library
ویژگی مقدار
سیستم عامل -
نام فایل fairworkflows-0.3.0
نام fairworkflows
نسخه کتابخانه 0.3.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Robin Richardson, Djura Smits, Sven van den Burg
ایمیل نویسنده r.richardson@esciencecenter.nl
آدرس صفحه اصلی https://github.com/fair-workflows/fairworkflows/
آدرس اینترنتی https://pypi.org/project/fairworkflows/
مجوز -
![Build Status](https://github.com/fair-workflows/fairworkflows/workflows/Python%20application/badge.svg) [![Documentation Status](https://readthedocs.org/projects/fairworkflows/badge/?version=latest)](https://fairworkflows.readthedocs.io/en/latest/?badge=latest) [![Coverage Status](https://coveralls.io/repos/github/fair-workflows/fairworkflows/badge.svg?branch=main)](https://coveralls.io/github/fair-workflows/fairworkflows?branch=main) [![PyPI version](https://badge.fury.io/py/fairworkflows.svg)](https://badge.fury.io/py/fairworkflows) [![DOI](https://zenodo.org/badge/244369407.svg)](https://zenodo.org/badge/latestdoi/244369407) [![fair-software.eu](https://img.shields.io/badge/fair--software.eu-%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F-green)](https://fair-software.eu) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/fair-workflows/fairworkflows/main?filepath=examples%2Ffairworkflows-quick-start.ipynb) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4804/badge)](https://bestpractices.coreinfrastructure.org/projects/4804) # ```fairworkflows``` python library `fairworkflows` is a high-level, user-friendly python library that supports the construction, manipulation and publishing of FAIR scientific workflows using semantic technologies. ## Background `fairworkflows` is developed as a component of the FAIR Workbench, as part of the FAIR is FAIR project. The focus is on description of workflows consisting of manual and computational steps using semantic technology, such as the ontology described in the publication: _Celebi, R., Moreira, J. R., Hassan, A. A., Ayyar, S., Ridder, L., Kuhn, T., & Dumontier, M. (2019). Towards FAIR protocols and workflows: The OpenPREDICT case study._ [_arXiv:1911.09531._](https://arxiv.org/abs/1911.09531) The goals of the project are: 1. To facilitate the construction of RDF descriptions of a variety of scientific 'workflows', in the most general sense. This includes experimental procedures, ipython notebooks, computational analysis of results, etc. 2. To allow validation and publication of the resultant RDF (for example, by means of nanopublications). 3. Re-use of previously published steps, in new workflows. 4. FAIR data flow from end-to-end. We seek to provide an easy-to-use python interface for achieving the above. ## Documentation Checkout the [user documentation](https://fairworkflows.readthedocs.io/). ## Installation The most recent release can be installed from the python package index using ```pip```: ``` pip install fairworkflows ``` To publish workflows to the nanopub server you need to setup your nanopub profile. This allows the nanopub server to identify you. Run the following in the terminal after installation: ``` setup_nanopub_profile ``` This will add and store RSA keys to sign your nanopublications, publish a nanopublication with your name and ORCID iD to declare that you are using using these RSA keys, and store your ORCID iD to automatically add as author to the provenance of any nanopublication you will publish using this library. ## Quick demo Try out the library in this online executable notebook: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/fair-workflows/fairworkflows/main?filepath=examples%2Ffairworkflows-quick-start.ipynb) ## Quick Start ### Import from `fairworkflows` library ```python from fairworkflows import is_fairworkflow, is_fairstep, FairWorkflow ``` ### Define a step for your workflow Mark a function as a FAIR step using the `is_fairstep` decorator. Use keyword arguments to semantically annotate the step. In this example to provide a label and describe that this is a script task. ```python @is_fairstep(label='Addition', is_script_task=True) def add(x: float, y: float) -> float: """Adding up numbers.""" return x + y ``` ### Define your workflow Define your workflow by calling previously defined step functions. Mark the function as a workflow using the `is_fairworkflow` decorator. ```python @is_fairworkflow(label='My Workflow') def my_workflow(in1, in2): """ A simple workflow """ t1 = add(in1, in2) return t1 ``` ### Construct and publish a workflow Construct a FairWorkflow object from the function defining the workflow and publish as nanopublication. ```python workflow = FairWorkflow.from_function(my_workflow) workflow.publish_as_nanopub(use_test_server=True, publish_steps=True) ``` ### Execute the workflow Execute the workflow and inspect the prospective provenance ```python result, prov = workflow.execute(1, 4) print(prov) ``` ### Example notebook * See [examples/fairworkflows-quick-start.ipynb](examples/fairworkflows-quick-start.ipynb) for a current example of using the fairworkflows library to build a workflow using plex rdf ## How is the ```fairworkflows``` library expected to be used? While this library could be used as a standalone tool to build/publish RDF workflows, it is intended more as a component to be used in a variety of other tools that seek to add FAIR elements to workflows. At present the library is used in the following tools: * [FAIRWorkflowsExtension](https://github.com/fair-workflows/FAIRWorkflowsExtension): A Jupyter Lab extension that adds a widget for searching for previously published FairSteps or FairWorkflows. These can then be loaded into the notebook for modification or combination into new workflows. It is expected that the library will soon interact with FAIR Data Points as well e.g. [fairdatapoint](https://github.com/NLeSC/fairdatapoint). ## Relation to existing workflow formats/engines (e.g. CWL, WDL, Snakemake etc) This library is not intended to replace or compete with the hundreds of existing computational workflow formats, but rather to aid in RDF description and comparison of workflows in the most general sense of the term (including manual experiemental steps, notebooks, and so on). Steps in a FAIRWorkflow may very well be 'run this CWL workflow' or 'run this script', so such workflows are expected to sit more on a meta-level, describing the before-and-after of running one of these fully automated computational workflows as well.


نیازمندی

مقدار نام
==1.2.7 nanopub
~=2.5 networkx
- pytest
- pyyaml
<6.0.0,>=5.0.0 rdflib
- requests
>=0.14.1 pyshacl
==0.3.3 noodles
==2.11.3 Jinja2
- coveralls
- flaky
==0.14.1 graphviz
- pytest
- pytest-cov
- recommonmark
- sphinx
- sphinx-rtd-theme


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl fairworkflows-0.3.0:

    pip install fairworkflows-0.3.0.whl


نصب پکیج tar.gz fairworkflows-0.3.0:

    pip install fairworkflows-0.3.0.tar.gz