Install Xmipp » History » Version 47
Amber Herold, 08/04/2010 10:34 AM
1 | 1 | Amber Herold | h1. Install Xmipp |
---|---|---|---|
2 | |||
3 | 30 | Neil Voss | h2. Install documentation at Xmipp |
4 | |||
5 | 34 | Amber Herold | Biocomputing Unit at the Spanish National Center of Biotechnology (CNB-CSIC) provides "detailed documentation":http://xmipp.cnb.csic.es/twiki/bin/view/Xmipp/InstallingTheSoftware on how to install Xmipp on various systems. Below we cover _our way_ to get it working on your system. |
6 | 30 | Neil Voss | |
7 | 46 | Amber Herold | h2. Install supporting packages |
8 | |||
9 | |_.Name:|_.Download site:|_.yum package name|_.SuSE rpm name| |
||
10 | |gcc-c++||gcc-c++|| |
||
11 | |openmpi-devel||openmpi-devel|| |
||
12 | |libtiff-devel||libtiff-devel|| |
||
13 | |||
14 | 22 | Neil Voss | h2. Install Xmipp from source |
15 | |||
16 | 29 | Neil Voss | We recommend installing Xmipp from source to properly use the openmpi libraries that allows you to run on multiple processors |
17 | |||
18 | 27 | Neil Voss | h3. Download source code |
19 | |||
20 | 10 | Neil Voss | * Download the v2.4 source code from http://xmipp.cnb.csic.es/twiki/bin/view/Xmipp/InstallingTheSoftware |
21 | 12 | Neil Voss | * Unzip the source code: |
22 | <pre>tar zxvf Xmipp-2.4-src.tar.gz</pre> |
||
23 | 27 | Neil Voss | |
24 | h3. Prepare Xmipp make files |
||
25 | |||
26 | 1 | Amber Herold | * Go into Xmipp source directory |
27 | * Find openmpi directory |
||
28 | <pre> |
||
29 | 11 | Neil Voss | locate libmpi.so |
30 | 15 | Neil Voss | /usr/lib64/openmpi/1.3.2-gcc/lib/libmpi.so |
31 | 1 | Amber Herold | </pre> |
32 | |||
33 | 36 | Amber Herold | *Note:* If you can not find the openmpi directory, make sure you have installed the openmpi package. The installation on CentOS using yum is: yum -y install openmpi-devel. |
34 | 35 | Amber Herold | |
35 | 37 | Amber Herold | * Setup Xmipp to use openmpi by changing three lines in SConstruct (creating a backup of the file first) |
36 | 1 | Amber Herold | <pre> |
37 | 11 | Neil Voss | cp -v SConstruct SConstruct.orig |
38 | 28 | Neil Voss | </pre><pre> |
39 | 1 | Amber Herold | opts.Add('MPI_INCLUDE', 'MPI headers dir ', '/usr/lib/openmpi/1.2.7-gcc/include/') |
40 | opts.Add('MPI_LIBDIR', 'MPI libraries dir ', '/usr/lib/openmpi/1.2.7-gcc/lib/') |
||
41 | opts.Add('MPI_LIB', 'MPI library', 'mpi') |
||
42 | </pre> |
||
43 | |||
44 | 27 | Neil Voss | h3. Compile the source code |
45 | |||
46 | * Configure |
||
47 | 40 | Amber Herold | |
48 | 41 | Amber Herold | Be sure to modify the path in the second command as needed. For example, on a 32 bit machine using 1.4-gcc the command is: |
49 | export PATH=$PATH:/usr/lib/openmpi/1.4-gcc/bin |
||
50 | 40 | Amber Herold | |
51 | 11 | Neil Voss | <pre> |
52 | 39 | Amber Herold | sudo mpi-selector --verbose --yes --system --set `rpm --qf '%{NAME}-%{VERSION}-gcc-%{ARCH}\n' -q openmpi` |
53 | 1 | Amber Herold | export PATH=$PATH:/usr/lib64/openmpi/1.3.2-gcc/bin |
54 | ./scons.configure |
||
55 | 5 | Amber Herold | </pre> |
56 | 45 | Amber Herold | |
57 | 1 | Amber Herold | * Look for the following line in the output: |
58 | 42 | Amber Herold | |
59 | 1 | Amber Herold | <pre> |
60 | * Checking for MPI ... yes |
||
61 | 11 | Neil Voss | </pre> |
62 | 42 | Amber Herold | |
63 | 1 | Amber Herold | * Now compile the source code |
64 | 42 | Amber Herold | |
65 | 1 | Amber Herold | <pre> |
66 | ./scons.compile |
||
67 | </pre> |
||
68 | 42 | Amber Herold | |
69 | 17 | Neil Voss | * Move the main source code directory to global location, like @/usr/local@ |
70 | 42 | Amber Herold | |
71 | 19 | Neil Voss | <pre>sudo mv -v Xmipp-2.4-src /usr/local/Xmipp</pre> |
72 | 17 | Neil Voss | |
73 | 27 | Neil Voss | h3. Setup environmental variables |
74 | |||
75 | * For bash, edit xmipp.sh: |
||
76 | 21 | Neil Voss | <pre> |
77 | 18 | Neil Voss | export XMIPPDIR=/usr/local/Xmipp |
78 | export PATH=${XMIPPDIR}/bin:${PATH} |
||
79 | 1 | Amber Herold | export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${XMIPPDIR}/lib |
80 | 18 | Neil Voss | </pre> |
81 | 27 | Neil Voss | * For C shell, edit xmipp.csh: |
82 | 18 | Neil Voss | <pre> |
83 | 1 | Amber Herold | setenv XMIPPDIR /usr/local/Xmipp |
84 | setenv PATH ${XMIPPDIR}/bin:${PATH} |
||
85 | setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:${XMIPPDIR}/lib |
||
86 | </pre> |
||
87 | 27 | Neil Voss | * Copy to /etc/profile.d |
88 | 17 | Neil Voss | <pre> |
89 | 18 | Neil Voss | sudo cp -v xmipp.sh /etc/profile.d/ |
90 | 20 | Neil Voss | sudo chmod 755 /etc/profile.d/xmipp.sh |
91 | 18 | Neil Voss | |
92 | 26 | Neil Voss | - or - |
93 | |||
94 | 18 | Neil Voss | sudo cp -v xmipp.csh /etc/profile.d/ |
95 | 20 | Neil Voss | sudo chmod 755 /etc/profile.d/xmipp.csh |
96 | 17 | Neil Voss | </pre> |
97 | 18 | Neil Voss | |
98 | 26 | Neil Voss | bq. You may need to log out and log back in for these changes to take place. |
99 | 1 | Amber Herold | |
100 | 22 | Neil Voss | h2. Test Xmipp |
101 | 23 | Neil Voss | |
102 | Test Xmipp by running ml_align2d program |
||
103 | 1 | Amber Herold | <pre> |
104 | 24 | Neil Voss | xmipp_ml_align2d -h |
105 | 22 | Neil Voss | </pre> |
106 | 24 | Neil Voss | This result should appear |
107 | 22 | Neil Voss | <pre> |
108 | 2104:Argument -i not found or invalid argument |
||
109 | File: libraries/data/args.cpp line: 502 |
||
110 | Usage: ml_align2d [options] |
||
111 | -i <selfile> : Selfile with input images |
||
112 | -nref <int> : Number of references to generate automatically (recommended) |
||
113 | OR -ref <selfile/image> OR selfile with initial references/single reference image |
||
114 | [ -o <rootname> ] : Output rootname (default = "ml2d") |
||
115 | [ -mirror ] : Also check mirror image of each reference |
||
116 | [ -fast ] : Use pre-centered images to pre-calculate significant orientations |
||
117 | [ -thr <N=1> ] : Use N parallel threads |
||
118 | [ -more_options ] : Show all possible input parameters |
||
119 | </pre> |
||
120 | 47 | Amber Herold | |
121 | 8 | Amber Herold | ______ |
122 | 16 | Neil Voss | |
123 | 32 | Neil Voss | [[Install SPIDER|< Install SPIDER]] | [[Install UCSF Chimera|Install UCSF Chimera >]] |
124 | 9 | Amber Herold | |
125 | 1 | Amber Herold | ______ |