Score file not getting generated even after successful run #76
-
I am trying to change the specificity of a protein so that it binds to a desired DNA sequence. For this, I am following the protocol mentioned below. Thyme S, Baker D. Redesigning the specificity of protein-DNA interactions with Rosetta. Methods Mol Biol. 2014;1123:265-82. doi: 10.1007/978-1-62703-968-0_17. PMID: 24510272. The program is sucessfully running, PDB files are getting generated but the score.sc file is not getting formed. -out:file:scorefile output_files/score.sc However, score.sc file is still not created at the desired location. [ ERROR ]: Caught exception: File: src/utility/options/OptionCollection.cc:1467 AN INTERNAL ERROR HAS OCCURED. PLEASE SEE THE CONTENTS OF ROSETTA_CRASH.log FOR DETAILS. Here is my rosetta_crash.log file for your reference. Rosetta crash log. Please submit the contents of this file to http://crash.rosettacommons.org/ [START_CRASH_REPORT] [END_OPTIONS] /home/soumya/Downloads/rosetta.source.release-371/main/source/build/src/release/linux/6.5/64/x86/gcc/11/default/libutility.so(backtrace_stringabi:cxx11+0x5a) [0x7d3d615ab35a] [END_BACKTRACE] [START_MESSAGE] [END_MESSAGE] |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
First off, The other thing to keep in mind is that Rosetta will typically not create directories if it doesn't already exist. So if you have The protocol you listed uses the rosetta_scripts application, which should definitely output a scorefile at the path specified by |
Beta Was this translation helpful? Give feedback.
-
Marking this as "closed", as I hope your question has been answered. If that assessment is incorrect, feel free to re-open or open up a new discussion with more details. |
Beta Was this translation helpful? Give feedback.
First off,
-out:path
is a namespace that's used to control directories for output. But that's typically only for when you're outputting multiple files. If there's a single file associated with your output, it's usually the-out:file
option (e.g.-out:file:scorefile
) that is used. -- just omit the -out:path:scorefileThe other thing to keep in mind is that Rosetta will typically not create directories if it doesn't already exist. So if you have
-out:file:scorefile output_files/score.sc
, then the directoryoutput_files/
(relative to the running directory) must already exist. If you want to usemy_output_score/
as the directory instead, try-out:file:scorefile my_output_score/my_score.sc
-- …