Skip to content

Commit

Permalink
Change format in Analysis jobs which output a Trajectory
Browse files Browse the repository at this point in the history
  • Loading branch information
MBartkowiakSTFC committed Jan 18, 2024
1 parent 2c4060a commit 60678d2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class CenterOfMassesTrajectory(IJob):
)
settings["output_file"] = (
"OutputFilesConfigurator",
{"formats": ["MDAFormat"]},
{"formats": ["MDTFormat"]},
)

def initialize(self):
Expand Down
2 changes: 1 addition & 1 deletion MDANSE/Src/MDANSE/Framework/Jobs/CroppedTrajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CroppedTrajectory(IJob):
)
settings["output_file"] = (
"OutputFilesConfigurator",
{"formats": ["MDAFormat"]},
{"formats": ["MDTFormat"]},
)

def initialize(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class GlobalMotionFilteredTrajectory(IJob):
)
settings["output_file"] = (
"OutputFilesConfigurator",
{"formats": ["MDAFormat"]},
{"formats": ["MDTFormat"]},
)

def initialize(self):
Expand Down
2 changes: 1 addition & 1 deletion MDANSE/Src/MDANSE/Framework/Jobs/MoleculeFinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class MoleculeFinder(IJob):
)
settings["output_files"] = (
"OutputFilesConfigurator",
{"formats": ["MDAFormat"]},
{"formats": ["MDTFormat"]},
)

def initialize(self):
Expand Down
2 changes: 1 addition & 1 deletion MDANSE/Src/MDANSE/Framework/Jobs/RigidBodyTrajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class RigidBodyTrajectory(IJob):
)
settings["reference"] = ("IntegerConfigurator", {"mini": 0})
settings["remove_translation"] = ("BooleanConfigurator", {"default": False})
settings["output_files"] = ("OutputFilesConfigurator", {"formats": ["MDAFormat"]})
settings["output_files"] = ("OutputFilesConfigurator", {"formats": ["MDTFormat"]})

def initialize(self):
""" """
Expand Down
2 changes: 1 addition & 1 deletion MDANSE/Src/MDANSE/Framework/Jobs/UnfoldedTrajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class UnfoldedTrajectory(IJob):
)
settings["output_file"] = (
"OutputFilesConfigurator",
{"formats": ["MDAFormat"]},
{"formats": ["MDTFormat"]},
)

def initialize(self):
Expand Down

0 comments on commit 60678d2

Please sign in to comment.