view galaxy_stubs/CombiLibGenerator.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
line wrap: on
line source

<?xml version='1.0' encoding='UTF-8'?>
<!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
<!--Proposed Tool Section: [Get Data]-->
<tool id="CombiLibGenerator" name="CombiLibGenerator" version="1.1.0">
  <description>generate combinatorial lib</description>
  <macros>
    <token name="@EXECUTABLE@">CombiLibGenerator</token>
    <import>macros.xml</import>
  </macros>
  <expand macro="stdio"/>
  <expand macro="requirements"/>
  <command>CombiLibGenerator

#if $param_i:
  -i $param_i
#end if
#if $param_o:
  -o $param_o
#end if
</command>
  <inputs>
    <param name="param_i" type="data" format="txt" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input combi-lib file" help="(-i) "/>
  </inputs>
  <expand macro="advanced_options"/>
  <outputs>
    <data name="param_o" format="mol2"/>
  </outputs>
  <help>This tool generates a combinatorial library by combining the given molecule scaffolds with possible combinations of moieties.

As input we need a text file specifying SMARTS expressions for the desired scaffolds and R-groups. Its format should look like the following example, although you may specify as many scaffolds and as many SMARTS expressions per R-group as you need:

&lt;scaffold&gt;
      Fc1ccc(cc1)C2=C(C([R1])=NO2)c3ccnc([R2])c3
&lt;moietyR1&gt;
      [R1]C(C)(C)C
&lt;moietyR2&gt;
      [R2]OC(C)(C)C

Output of CombiLibGenerator is a file containing created topologies. Note that this tool does *not* generate any conformations but only topologies, so that all coordinates in the output file will be zero. Thus, apply Ligand3DGenerator to the output generated by CombiLibGenerator if you need 3D conformations.

</help>
</tool>