Sebastian Bittrich 2 年 前
コミット
e888606dea
2 ファイル変更4 行追加3 行削除
  1. 2 2
      src/viewer/ui/strucmotif.tsx
  2. 2 1
      src/viewer/ui/strucmotif/helpers.ts

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

@@ -134,11 +134,11 @@ class SubmitControls extends PurePluginUIComponent<{}, { isBusy: boolean, residu
         }
 
         if (ctx.exchanges.length) Object.assign(query.parameters, { exchanges: ctx.exchanges });
-        console.log(query);
+        // console.log(query);
         const sierraUrl = (this.plugin.customState as ViewerState).detachedFromSierra ? ABSOLUTE_ADVANCED_SEARCH_URL : RELATIVE_ADVANCED_SEARCH_URL;
         const csmTag = dataSource !== 'identifier' || CSM_REGEX.test(entryId) ? CSM_TAG : '';
         const queryUrl = sierraUrl + encodeURIComponent(JSON.stringify(query)) + RETURN_TYPE + csmTag;
-        console.log(queryUrl);
+        // console.log(queryUrl);
 
         window.open(queryUrl, '_blank');
     };

+ 2 - 1
src/viewer/ui/strucmotif/helpers.ts

@@ -117,10 +117,11 @@ function join(opers: any[]) {
 
 export async function uploadStructure(ctx: StrucmotifCtx) {
     const { entryId, plugin, structure } = ctx;
+    const name = entryId.replace(/\W/g, '') || 'unknown';
+    plugin.log.info(`Uploading BinaryCIF Representation of ${name} to RCSB Cloud`);
 
     const formData = new FormData();
     formData.append('format', 'bcif');
-    const name = entryId.replace(/\W/g, '') || 'unknown';
     formData.append('name', name);
     const file = new File([to_mmCIF(name, structure, true, { copyAllCategories: true })], name + '.bcif');
     formData.append('file', file);