Q: How can I switch MolPipe tools to use the ICM-Chemist license instead of the default ICM license?
A:
To configure MolPipe tools to use your ICM-Chemist licenses (you have 4 available), follow these steps:
Navigate to the ICM installation directory:
cd $ICMHOMECreate a shell script (e.g., icmchemist) with the following content:
#!/bin/shMake the script executable:
chmod +x icmchemistTest that the script runs correctly:
$ICMHOME/icmchemistSwitch MolPipe tools to use this shell:
cd $ICMHOME/molpipeAfter this setup, all MolPipe tools (e.g., molrdsdf.icm, molfilter.icm, mol2sdf.icm) will use the ICM-Chemist license, allowing up to 4 concurrent pipeline commands.
Example usage:
molrdsdf.icm AllVendors2025_LL_c1000.sdf | molfilter.icm "MolWeight(mol)<=300" | mol2sdf.icm > AllVendors2025_LL_c1000_MW300.sdf