XDS-Viewer: Difference between revisions

From XDSwiki
Jump to navigation Jump to search
(New page: XDS-viewer is a open source program that was written by Michael Hoffer (Kabsch lab). I was able to compile the program (version 0.5) for RedHat Enterprise Linux versions 3, 4 and 5 (or ra...)
 
mNo edit summary
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
XDS-viewer is a open source program that was written by Michael Hoffer (Kabsch lab).
XDS-viewer is a open source program that was written by Michael Hoffer (Kabsch lab). It replaces the now obsolete [[VIEW]] program, and is available from http://xds-viewer.sourceforge.net/ .


I was able to compile the program (version 0.5) for RedHat Enterprise Linux versions 3, 4 and 5 (or rather, for their CentOS equivalents) by the following recipe:
I was able to compile the program (version 0.6) for RedHat Enterprise Linux version 6 (or rather, for its CentOS equivalents) by the following recipe:


  # the X11 development libs are needed; in case they are not available use something like:
  wget http://downloads.sourceforge.net/xds-viewer/xds-viewer-0.6.tar.gz
# yum install libX11-devel libXext-devel
  tar xf xds-viewer-0.6.tar.gz
# also check out http://doc.trolltech.com/4.5/requirements-x11.html !
  cd xds-viewer-0.6
  sh compile.sh  
wget http://download.qtsoftware.com/qt/source/qt-x11-opensource-src-4.5.0.tar.gz
  # If this complains about missing tools or libraries, use e.g. "yum search cmake"
  # unpack the tarfile and run "./configure -static"; then "gmake -j <number of processes>".
  # I had to "yum install cmake qt-devel"
  # Warning: this takes hours and up to 10 GB disk space!
# It may be possible to add e.g. the -no-qt3support -no-exceptions options but I didn't try.
wget http://www.cmake.org/files/v2.6/cmake-2.6.3-Linux-i386.sh
# unpack and note where the bin directory is
  wget http://downloads.sourceforge.net/x/xd/xds-viewer/xds-viewer-0.5.tar.gz
  # unpack, then edit compile.sh and add a line like
  # PATH=<path to cmake bin directory>:/usr/local/Trolltech/Qt-4.5.0/bin:$PATH
  # compile.sh  then gives the binary in the build/bin directory


The resulting binaries are available at ftp://turn5.biologie.uni-konstanz.de/pub .
I worked out the following patch to make the x and y values fit into the upper right window:
 
--- xds-viewer-old/src/mainwindow.ui    2009-03-08 15:00:55.000000000 +0100
+++ xds-viewer-new/src/mainwindow.ui    2009-03-05 22:22:37.000000000 +0100
@@ -142,7 +142,7 @@
            <property name="font" >
              <font>
              <family>Monospace</family>
-            <pointsize>12</pointsize>
+            <pointsize>11</pointsize>
              <weight>75</weight>
              <bold>true</bold>
              <strikeout>false</strikeout>
 
Linux binaries are available at https://{{SERVERNAME}}/pub .
 
==Gentoo Linux==
 
You can find the ebuild in the science overlay.
 
emerge sci-visualization/xds-viewer
 
==Binaries at the sourceforge site==
Click https://sourceforge.net/project/platformdownload.php?group_id=239755
 
==See also==
 
[[Installation]]

Revision as of 19:21, 24 March 2020

XDS-viewer is a open source program that was written by Michael Hoffer (Kabsch lab). It replaces the now obsolete VIEW program, and is available from http://xds-viewer.sourceforge.net/ .

I was able to compile the program (version 0.6) for RedHat Enterprise Linux version 6 (or rather, for its CentOS equivalents) by the following recipe:

wget http://downloads.sourceforge.net/xds-viewer/xds-viewer-0.6.tar.gz
tar xf  xds-viewer-0.6.tar.gz
cd xds-viewer-0.6
sh compile.sh 
# If this complains about missing tools or libraries, use e.g. "yum search cmake" 
# I had to "yum install cmake qt-devel"

I worked out the following patch to make the x and y values fit into the upper right window:

--- xds-viewer-old/src/mainwindow.ui    2009-03-08 15:00:55.000000000 +0100
+++ xds-viewer-new/src/mainwindow.ui    2009-03-05 22:22:37.000000000 +0100
@@ -142,7 +142,7 @@
            <property name="font" >
             
              <family>Monospace</family>
-             <pointsize>12</pointsize>
+             <pointsize>11</pointsize>
              <weight>75</weight>
              <bold>true</bold>
              <strikeout>false</strikeout>

Linux binaries are available at https://wiki.uni-konstanz.de/pub .

Gentoo Linux

You can find the ebuild in the science overlay.

emerge sci-visualization/xds-viewer

Binaries at the sourceforge site

Click https://sourceforge.net/project/platformdownload.php?group_id=239755

See also

Installation