Browse Source

fix outgoing strucmotif query URL

JonStargaryen 2 years ago
parent
commit
bb85e8e811
2 changed files with 5 additions and 1 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      src/viewer/ui/strucmotif.tsx

+ 4 - 0
CHANGELOG.md

@@ -2,6 +2,10 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [2.5.2] - 2022-07-21
+### Bug fixes
+- Fix outgoing strucmotif query URL
+
 ## [2.5.1] - 2022-07-19
 ### Bug fixes
 - Rename presets/themes for RSCC coloring

+ 1 - 1
src/viewer/ui/strucmotif.tsx

@@ -28,7 +28,7 @@ import { ViewerState } from '../types';
 
 const ABSOLUTE_ADVANCED_SEARCH_URL = 'https://rcsb.org/search?query=';
 const RELATIVE_ADVANCED_SEARCH_URL = '/search?query=';
-const RETURN_TYPE = '&return_type=assembly';
+const RETURN_TYPE = '&return_type=assembly&include_csm=true';
 const MIN_MOTIF_SIZE = 2;
 const MAX_MOTIF_SIZE = 10;
 export const MAX_EXCHANGES = 4;