-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from glycojones/onemodel
Added some last minute changes
- Loading branch information
Showing
18 changed files
with
317,914 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
import time | ||
import pytest | ||
import importlib | ||
from os import path | ||
|
||
INPUT_DIR = './tests/test_data/KSWdata/' | ||
OUTPUT_DIR = './tests/test_output/' + '{suffix}' | ||
|
||
DATASET1_PATH = str(os.path.join(INPUT_DIR, "acnr")) + '{suffix}' | ||
|
||
|
||
def test_acnr_noCOV_noMP_noRamaZ_spro (): | ||
import iris_validation as iris | ||
importlib.reload(iris) | ||
job_name = "acnr_noCOV_noMP_noRamaZ_spro" | ||
iris.generate_report(latest_model_path=DATASET1_PATH.format(suffix='.pdb'), | ||
latest_reflections_path=DATASET1_PATH.format(suffix='_refined.mtz'), | ||
previous_model_path=DATASET1_PATH.format(suffix='_refined.pdb'), | ||
previous_reflections_path=DATASET1_PATH.format(suffix='_refined.mtz'), | ||
output_dir=OUTPUT_DIR.format(suffix=""), | ||
run_covariance=False, | ||
run_molprobity=False, | ||
calculate_rama_z=False, | ||
multiprocessing=False, | ||
output_name_prefix=job_name) | ||
assert path.exists(OUTPUT_DIR.format(suffix=job_name) + ".html") |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.