markovmodel/PyEMMA

What is the difference between a working directory and a path?

Wencesgiovanni opened this issue · 2 comments

What is the difference between a working directory and a path? I am at a loss. I am trying to fetch the file pH10-amber-R1-dry.xtc via the command

files = fetch( 'pH10-amber-R1-dry.xtc', working_directory='C:/Users/giova/data/')

but I keep on obtaining the following error message: pH10-amber-R1-dry.xtc [no match in repository] I assure you that the file pH10-amber-R1-dry.xtc does belong to the directory /data. Why do I get the said message? Thank you very much for you attentive reply!

hi, @Wencesgiovanni the command 'fetch' and 'mdshare.fetch' is trying to get files from the repository of PyEmma. Hence, instead of using that just use ( files = 'C:/Users/giova/data/pH10-amber-R1-dry.xtc ' ) . That should work, hope that helps.

thanks