Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The GUI version of EddyPro Engine is not available on the cluster because it is a fork of the main project and is of an older version.The GUI version of EddyPro download to download for Windows and Mac OS from here.

Create projects on Alcova or create projects locally and upload to the cluster.

If using on the Windows version or if uploading a project created locally then The GUI version is not supported on the cluster.

Projects and data files can be created on the local desktop and then uploaded to the cluster or created using Alcova storage.

To use uploaded EddyPro project files on the cluster then some edits need to be made to the project file by opening it with a text editor. In order to get the project to work your local desktop again the pathing in the project file will need to be edited in a text editor to update the pathing.

...

reverted to what it was before.

Edits To Local Desktop Project Uploaded To Cluster

The following is an example of the pathing set in the project file after creating a project created on a local Windows desktop and uploaded to the cluster:

Code Block
file_name=C:/Users/<user>/<eddypro_project_folder>/<eddypro_project_name>.eddypro
out_path=C:/Users/<user>/<eddypro_project_folder>/results
data_path=C:/Users/<user>/<eddypro_project_folder>/<directory_of_data>

To use on the cluster this needs to be edited to:

Code Block
file_name=/project/<project_name>/<user_name>/<eddypro_project_folder>/<eddypro_project_name>.eddypro
out_path=/project/<project_name>/<user_name>/<eddypro_project_folder>/results
data_path=/project/<project_name>/<user_name>/<eddypro_project_folder>/<directory_of_data>

Edits To Project Using Alcova

The following is an example of the pathing set in the project file after creating a project using the Windows GUI version of EddyPro on Alcova:

Code Block
file_name=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/<project<eddypro_project_name>.eddypro
out_path=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/output
data_path=//alcova.arcc.uwyo.edu/project/<your_project>/<eddypro_project_example>/<directory_of_data>

To use this project on Linux the cluster this needs to be edited to:

Code Block
file_name=/alcova/<your_project>/<eddypro_project_example>/<project<eddypro_project_name>.eddypro
out_path=/alcova/<your_project>/<eddypro_project_example>/output
data_path=/alcova/<your_project>/<eddypro_project_example>/<directory_of_data>

...