-
Notifications
You must be signed in to change notification settings - Fork 1
Bugfix/rdf bugfix #114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Bugfix/rdf bugfix #114
Changes from 7 commits
d787e94
f43393d
b2a9600
7048666
229bfae
d64f70a
e7db465
275b3dc
cc1e059
409a3be
375eb49
dbdebbd
eac4dc1
dbba27d
dffb1d0
bfb0365
cfb5391
92e68ee
d52e3b1
1b191f8
8630902
5233c5b
ff076a9
5ea4351
d72d124
5a97cbe
6ae17a8
d166c80
ab32870
3e476c7
736e5c9
1a818ac
776737c
4acdbc8
d486b1e
614df34
78aa426
0eeebd0
6be6534
03fd8ce
92f780c
ce61178
91fac6a
41b626d
3050345
8e454f1
0b1efc5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,7 +76,8 @@ def read(self): | |
| super().read() | ||
| super().check_required_keys(self.required_keys) | ||
| super().check_known_keys(self.required_keys + self.optional_keys) | ||
|
|
||
| super().not_defined_optional_keys(self.optional_keys) | ||
|
|
||
| if (self.no_intra_molecular is not None and | ||
| (self.restart_file is None or self.moldescriptor_file is None)): | ||
| self.logger.error( | ||
|
|
@@ -96,6 +97,16 @@ def read(self): | |
| exception=InputFileError, | ||
| ) | ||
|
|
||
| if self.restart_file is None and self.moldescriptor_file is None: | ||
| self.logger.error( | ||
| ( | ||
| "The restart_file key or the moldescriptor_file key with restart_file key " | ||
| "have to be set in order to use the RDF analysis." | ||
|
||
| "It is needed for the selection of the target and reference residues." | ||
| ), | ||
| exception=InputFileError, | ||
| ) | ||
|
|
||
|
|
||
|
|
||
| input_keys_documentation = f""" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.