User d2950aa5e4
13-02-2010 06:33:54
I need to split RDF file into individual molecules, retaining the label information for each of them and the ID of the reaction. Ideal output would be SDF. An example of the problem:
RDF :
A (labeled 1a) + B (labeled 1b) --> C (labeled cis-12) + D (labeled trans-12) [reaction ID 123]
E (labeled 2a) + F (labeled 2b) --> G (labeled alpha-13) + H (labeled beta-13) [reaction ID 124]
Desired output information (SDF format) :
Structure of A
label: 1a
type: reactant
reaction ID : 123
Structure of B
label: 1b
type: reactant
reaction ID : 123
Structure of C
label: cis-12
type: product
reaction ID : 123
Structure of D
label: trans-12
type: product
reaction ID : 123
Structure of E
label: 2a
type: reactant
reaction ID : 124
Structure of F
label: 2b
type: reactant
reaction ID : 124
Structure of G
label: alpha-13
type: product
reaction ID : 124
Structure of H
label: beta-13
type: product
reaction ID : 124
Is molconverter (my version is 5.3.0.1) capable of this or any combined way how to achieve this goal ? Thanks.