瀏覽代碼

fix validation

Sebastian Bittrich 2 年之前
父節點
當前提交
5790364868
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/viewer/ui/strucmotif/validation.ts

+ 2 - 0
src/viewer/ui/strucmotif/validation.ts

@@ -34,6 +34,8 @@ export function determineBackboneAtom(structure: Structure, location: StructureE
 }
 
 export function validate(ctx: StrucmotifCtx) {
+    if (ctx.residueIds.length < MIN_MOTIF_SIZE) return false;
+
     if (ctx.pdbId.size > 1) {
         alert('Motifs can only be extracted from a single model!');
         return false;