Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
cpignedoli committed Feb 13, 2024
1 parent 3f204e1 commit bbaa731
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions examples/workflows/example_cp2k_md_reftraj.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import click
import numpy as np
from aiida import engine, orm, plugins
from ase import Atoms

Cp2kMdReftrajWorkChain = plugins.WorkflowFactory("nanotech_empa.cp2k.reftraj")
StructureData = DataFactory("core.structure")
Expand Down Expand Up @@ -40,8 +39,8 @@ def _example_cp2k_reftraj(cp2k_code):
trajectory.set_trajectory(symbols, positions, cells=cells)

builder = Cp2kMdReftrajWorkChain.get_builder()
if restart_uuid is not None:
builder.restart_from = orm.Str(restart_uuid)
# if restart_uuid is not None:
# builder.restart_from = orm.Str(restart_uuid)

builder.metadata.label = "CP2K_RefTraj"
builder.metadata.description = "test description"
Expand Down Expand Up @@ -90,7 +89,7 @@ def run_all(cp2k_code):
uuid = _example_cp2k_reftraj(
cp2k_code=orm.load_code(cp2k_code),
)
# print(f"#### RKS continuation from uuid ({uuid})")
print(f"#### RKS continuation from uuid ({uuid}) to be implemented")
# _example_cp2k_replicachain(
# cp2k_code=orm.load_code(cp2k_code),
# targets=[1.47, 1.27, 1.87],
Expand Down

0 comments on commit bbaa731

Please sign in to comment.