Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Efficiently design and manage flexible workflows with AiiDA, featuring an interactive GUI, checkpoints, provenance tracking, error-resistant, and remote execution capabilities.
pip install aiida-workgraph[widget]
To install the latest version from source, first clone the repository and then install using pip
:
git clone https://github.com/aiidateam/aiida-workgraph
cd aiida-workgraph
pip install -e .
To install the jupyter widget support you need to in addition build the JavaScript packages:
pip install .[widget]
# build widget
cd aiida_workgraph/widget/
npm install
npm run build
# build web frontend
cd ../../aiida_workgraph/web/frontend/
npm install
npm run build
Explore the comprehensive documentation to discover all the features and capabilities of AiiDA Workgraph.
Visit the Workgraph Collections repository to see demonstrations of how to utilize AiiDA Workgraph for different computational codes.
Suppose we want to calculate (x + y) * z
in two steps. First, add x
and y
, then multiply the result with z
.
from aiida_workgraph import WorkGraph, task
# define add task
@task.calcfunction
def add(x, y):
return x + y
# define multiply task
@task.calcfunction
def multiply(x, y):
return x*y
# Create a workgraph to link the tasks.
wg = WorkGraph("test_add_multiply")
wg.add_task(add, name="add1")
wg.add_task(multiply, name="multiply1")
wg.add_link(wg.tasks["add1"].outputs["result"], wg.tasks["multiply1"].inputs["x"])
Prepare inputs and submit the workflow:
from aiida import load_profile
load_profile()
wg.submit(inputs = {"add1": {"x": 2, "y": 3}, "multiply1": {"y": 4}}, wait=True)
print("Result of multiply1 is", wg.tasks["multiply1"].outputs[0].value)
Start the web app, open a terminal and run:
workgraph web start
Then visit the page http://127.0.0.1:8000/workgraph, you should find a first_workflow
WorkGraph, click the pk and view the WorkGraph.
One can also generate the node graph from the process:
verdi node generate pk
To contribute to this repository, please enable pre-commit so the code in commits are conform to the standards.
pip install -e .[tests,pre-commit]
pre-commit install
See the README.md
See the README.md
FAQs
Design flexible node-based workflow for AiiDA calculation.
We found that aiida-workgraph demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.