[Date Prev ][Date Next ][Thread Prev ][Thread Next ][Date Index ][Thread Index ]
[IMP-dev] Wrapping of the use of read_pdb in EM module
To : List for IMP development <imp-dev@salilab.org imp-devATsalilab.org >
Subject : [IMP-dev] Wrapping of the use of read_pdb in EM module
From : Javier Ángel Velázquez Muriel <javi@salilab.org javiATsalilab.org >
Date : Tue, 24 Mar 2009 23:51:35 -0700
Domainkey-signature : a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=F+AXX4u30a15rAKq+Yniip00oo7gJbe8+0XR39FnCaA3EEo6pbaqucekT7h6xhxSaQ wpEzXlwkWxFxQ9N2XAyT3NSmF4vkEr7rpCNfLz3VhYARob8/vO8we3iWqQbp2+g170p0 GoIm4EFo8WEMfB27JStj83u50e8tuwF4O8FPY=
Reply-to : List for IMP development <imp-dev@salilab.org imp-devATsalilab.org >
Hi, In addition to my previous mail, now I'm trying to read a
PDB inside a simple test program in the em module. It is called
prueba.h (attached file). When I prepare the file modules/em/pyext/em.i (attached) to deal with prueba.h, surprisingly, I obtain this error from python:
ImportError: /chime1/home/javi/imp/trunk/build/lib/_IMP_em.so: undefined symbol: _ZTVN3IMP4atom8SelectorE Shouldn't this atom::Selector be wrapped, as I add these lines to the em.i file ?
#include "IMP/core.h"
#include "IMP/atom.h" %import "modules/core/pyext/core.i" %import "modules/atom/pyext/atom.i" Thanks
/**
* \file prueba.h
* \brief Reader and Writer fro Spider and Xmipp Images and Volumes
* \author Javier Velazquez-Muriel
* Copyright 2007-9 Sali Lab. All rights reserved.
*/
#ifndef IMPEM_PRUEBA_H
#define IMPEM_PRUEBA_H
#include "DensityMap.h"
#include "MRCReaderWriter.h"
#include <IMP/em/SpiderReaderWriter.h>
#include "IMP/atom/MolecularHierarchyDecorator.h"
#include "IMP/atom/pdb.h"
#include "IMP/Model.h"
IMPEM_BEGIN_NAMESPACE
inline void prueba() {
// Read Map
SpiderMapReaderWriter rw("media_mon_iter3.xmp",false,false,true);
DensityMap map;
map.Read("media_mon_iter3.xmp",rw);
// Read PDB
IMP::set_log_level(IMP::VERBOSE);
IMP::Model *model = new IMP::Model();
IMP::atom::MolecularHierarchyDecorator mol =
IMP::atom::read_pdb("T7mdl.B99990001.pdb",model);
IMP::atom::write_pdb(mol,"aaa.pdb");
}
IMPEM_END_NAMESPACE
#endif /* IMPEM_PRUEBA_H */
Attachment:
em.i
Description: Binary data