問題タブ [pymol]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
linux - Gromacs: 領域から残基を選択
脂質と水の構造を研究しています。脂質 (グループ 2) から 4A 未満のすべての水 (グループ 1) を選択する必要があります。私はこのコマンドを使用しました:
残念ながら、それは機能しますが、プログラムはその領域のすべての ATOM を選択し、H または OH だけを残します。追加することでこれを修正することになっていました-seltype whole_res_com
が、出力値はまったくナンセンスでした..脂質相の4A以内のすべての水残基を選択する他の方法はありますか? 前もって感謝します!
dependencies - Brew error "No such file or directory - /usr/local/Cellar/pango/1.46.1" on running "brew install brewsci/bio/pymol"
I am trying to install the open-source version of PyMOL on a mac through the Homebrew package manager as recommended on the official website: https://pymolwiki.org/index.php/MAC_Install#Open-Source_PyMOL.
During the installation process, Homebrew upgrades the pango dependency from 1.46.1 to 1.46.2, removes the old version, and then throws an error while checking for it.
Any ideas where this error is coming from? And how to fix it?
python - ネイティブ python でファイルへのショートカットを作成する
システムにインストールされている Python のバージョンに基づいて、最初に特定のパッケージ (PyMOL) をインストールし、ユーザーのデスクトップにそのプログラムへのショートカットを作成する小さな Python スクリプトを作成しようとしました。
ショートカットを作成したいファイルは、%APPDATA%/python/pythonVERSION/scripts/pymol.exe にあります。
ステップ 1 は問題なく動作し、期待どおりにパッケージをインストールします。ただし、ステップ 2 は、ネイティブ Python では非常に難しいことがわかります。
これまでに見つけたすべてのソリューションは、次のようなパッケージを使用していますwin32com, pythoncom, swinlnk,
...
PyMOL をインストールしようとしている全員の PC にショートカットを作成するために一度だけ必要なパッケージをインストールする必要はありません。
サードパーティのパッケージをインストールしなくても、ネイティブ Python でファイルへのショートカットを作成する方法はありますか?
いくつかの解決策を示すために、私はすでに見つけました:
Python を使用して Windows 7 でショートカット ファイルを作成する
https://www.blog.pythonlibrary.org/2010/01/23/using-python-to-create-shortcuts/
Windowsでフォルダへのショートカットを作成する方法は?