Re: [Rdkit-discuss] Append to SD file with SDWriter
Open-Source Cheminformatics and Machine Learning
Brought to you by:
glandrum
|
From: Paolo T. <pao...@un...> - 2013-10-19 14:59:04
|
Dear Kirk,
you may open the existing file in 'append' mode with open() and pass the
file object to the SDWriter instead of the filename, e.g.:
sdfFile = open('molecule.sdf', 'a')
w = Chem.SDWriter(sdfFile)
w.write(yourMol)
Cheers,
Paolo
On 10/19/2013 04:40 PM, Robert DeLisle wrote:
> I would like to have the option to append to the end of an existing SD
> file. Is there an option for that with the SDWriter?
>
> -Kirk
>
>
>
>
> ------------------------------------------------------------------------------
> October Webinars: Code for Performance
> Free Intel webinars can help you accelerate application performance.
> Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
> the latest Intel processors and coprocessors. See abstracts and register >
> http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk
>
>
> _______________________________________________
> Rdkit-discuss mailing list
> Rdk...@li...
> https://lists.sourceforge.net/lists/listinfo/rdkit-discuss
--
==========================================================
Paolo Tosco, Ph.D.
Department of Drug Science and Technology
Via Pietro Giuria, 9 - 10125 Torino (Italy)
Tel: +39 011 670 7680 | Mob: +39 348 5537206
Fax: +39 011 670 7687 | E-mail: pao...@un...
http://open3dqsar.org | http://open3dalign.org
==========================================================
|