<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/43120?offset=50</link>
	<atom:link href="https://bioinformaticsonline.com/related/43120?offset=50" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/11313/linux-sort-commands-for-bioinformatics</guid>
	<pubDate>Sat, 31 May 2014 15:41:16 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/11313/linux-sort-commands-for-bioinformatics</link>
	<title><![CDATA[Linux Sort Commands for Bioinformatics]]></title>
	<description><![CDATA[<p>Almost all the scripting languages such as Perl, Python etc have built-in sort, but unfortunately none of them are as flexible as sort command. But one when it come to space efficiency GNU sort stands at the top. It can sort a 20Gb file with less than 2Gb memory. It is not trivial to implement so powerful a sort by yourself.</p><p>sort a space-delimited file based on its first column, then the second if the first is the same, and so on:<br />sort input.txt</p><p>sort a huge file (GNU sort ONLY):<br />sort -S 1500M -t $HOME/tmp input.txt &gt; sorted.txt</p><p>sort starting from the third column, skipping the first two columns:<br />sort +2 input.txt</p><p>sort the second column as numbers, descending order; if identical, sort the 3rd as strings, ascending order:<br />sort -k2,2nr -k3,3 input.txt</p><p>sort starting from the 4th character at column 2, as numbers:<br />sort -k2.4n input.txt</p><p>More Linxu sort command information<br /><br />If you have any sort commands you'd like to share, please add them to our comments section below. For more help, you can also type:<br /><br />man sort<br /><br />or<br /><br />sort --help<br /><br />on your Unix/Linux system.</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</guid>
	<pubDate>Wed, 22 Jun 2016 07:55:06 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/27965/cheatsheet-for-linux</link>
	<title><![CDATA[Cheatsheet for Linux !!]]></title>
	<description><![CDATA[<p>Linux Commands Cheat Sheet<br /><br />&nbsp;&nbsp;&nbsp; File System<br /><br />&nbsp;&nbsp;&nbsp; ls &mdash; list items in current directory<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show in long format to see perimissions, size, an modification date<br /><br />&nbsp;&nbsp;&nbsp; ls -a &mdash; list all items in current directory, including hidden files<br /><br />&nbsp;&nbsp;&nbsp; ls -F &mdash; list all items in current directory and show directories with a slash and executables with a star<br /><br />&nbsp;&nbsp;&nbsp; ls dir &mdash; list all items in directory dir<br /><br />&nbsp;&nbsp;&nbsp; cd dir &mdash; change directory to dir<br /><br />&nbsp;&nbsp;&nbsp; cd .. &mdash; go up one directory<br /><br />&nbsp;&nbsp;&nbsp; cd / &mdash; go to the root directory<br /><br />&nbsp;&nbsp;&nbsp; cd ~ &mdash; go to to your home directory<br /><br />&nbsp;&nbsp;&nbsp; cd - &mdash; go to the last directory you were just in<br /><br />&nbsp;&nbsp;&nbsp; pwd &mdash; show present working directory<br /><br />&nbsp;&nbsp;&nbsp; mkdir dir &mdash; make directory dir<br /><br />&nbsp;&nbsp;&nbsp; rm file &mdash; remove file<br /><br />&nbsp;&nbsp;&nbsp; rm -r dir &mdash; remove directory dir recursively<br /><br />&nbsp;&nbsp;&nbsp; cp file1 file2 &mdash; copy file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; cp -r dir1 dir2 &mdash; copy directory dir1 to dir2 recursively<br /><br />&nbsp;&nbsp;&nbsp; mv file1 file2 &mdash; move (rename) file1 to file2<br /><br />&nbsp;&nbsp;&nbsp; ln -s file link &mdash; create symbolic link to file<br /><br />&nbsp;&nbsp;&nbsp; touch file &mdash; create or update file<br /><br />&nbsp;&nbsp;&nbsp; cat file &mdash; output the contents of file<br /><br />&nbsp;&nbsp;&nbsp; less file &mdash; view file with page navigation<br /><br />&nbsp;&nbsp;&nbsp; head file &mdash; output the first 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail file &mdash; output the last 10 lines of file<br /><br />&nbsp;&nbsp;&nbsp; tail -f file &mdash; output the contents of file as it grows, starting with the last 10 lines<br /><br />&nbsp;&nbsp;&nbsp; vim file &mdash; edit file<br /><br />&nbsp;&nbsp;&nbsp; alias name 'command' &mdash; create an alias for a command<br />&nbsp;&nbsp;&nbsp; System<br /><br />&nbsp;&nbsp;&nbsp; shutdown &mdash; shut down machine<br /><br />&nbsp;&nbsp;&nbsp; reboot &mdash; restart machine<br /><br />&nbsp;&nbsp;&nbsp; date &mdash; show the current date and time<br /><br />&nbsp;&nbsp;&nbsp; whoami &mdash; who you are logged in as<br /><br />&nbsp;&nbsp;&nbsp; finger user &mdash; display information about user<br /><br />&nbsp;&nbsp;&nbsp; man command &mdash; show the manual for command<br /><br />&nbsp;&nbsp;&nbsp; df &mdash; show disk usage<br /><br />&nbsp;&nbsp;&nbsp; du &mdash; show directory space usage<br /><br />&nbsp;&nbsp;&nbsp; free &mdash; show memory and swap usage<br /><br />&nbsp;&nbsp;&nbsp; whereis app &mdash; show possible locations of app<br /><br />&nbsp;&nbsp;&nbsp; which app &mdash; show which app will be run by default<br />&nbsp;&nbsp;&nbsp; Process Management<br /><br />&nbsp;&nbsp;&nbsp; ps &mdash; display your currently active processes<br /><br />&nbsp;&nbsp;&nbsp; top &mdash; display all running processes<br /><br />&nbsp;&nbsp;&nbsp; kill pid &mdash; kill process id pid<br /><br />&nbsp;&nbsp;&nbsp; kill -9 pid &mdash; force kill process id pid<br />&nbsp;&nbsp;&nbsp; Permissions<br /><br />&nbsp;&nbsp;&nbsp; ls -l &mdash; list items in current directory and show permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod ugo file &mdash; change permissions of file to ugo - u is the user's permissions, g is the group's permissions, and o is everyone else's permissions. The values of u, g, and o can be any number between 0 and 7.<br /><br />&nbsp;&nbsp;&nbsp; 7 &mdash; full permissions<br /><br />&nbsp;&nbsp;&nbsp; 6 &mdash; read and write only<br /><br />&nbsp;&nbsp;&nbsp; 5 &mdash; read and execute only<br /><br />&nbsp;&nbsp;&nbsp; 4 &mdash; read only<br /><br />&nbsp;&nbsp;&nbsp; 3 &mdash; write and execute only<br /><br />&nbsp;&nbsp;&nbsp; 2 &mdash; write only<br /><br />&nbsp;&nbsp;&nbsp; 1 &mdash; execute only<br /><br />&nbsp;&nbsp;&nbsp; 0 &mdash; no permissions<br /><br />&nbsp;&nbsp;&nbsp; chmod 600 file &mdash; you can read and write - good for files<br /><br />&nbsp;&nbsp;&nbsp; chmod 700 file &mdash; you can read, write, and execute - good for scripts<br /><br />&nbsp;&nbsp;&nbsp; chmod 644 file &mdash; you can read and write, and everyone else can only read - good for web pages<br /><br />&nbsp;&nbsp;&nbsp; chmod 755 file &mdash; you can read, write, and execute, and everyone else can read and execute - good for programs that you want to share<br />&nbsp;&nbsp;&nbsp; Networking<br /><br />&nbsp;&nbsp;&nbsp; wget file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; curl file &mdash; download a file<br /><br />&nbsp;&nbsp;&nbsp; scp user@host:file dir &mdash; secure copy a file from remote server to the dir directory on your machine<br /><br />&nbsp;&nbsp;&nbsp; scp file user@host:dir &mdash; secure copy a file from your machine to the dir directory on a remote server<br /><br />&nbsp;&nbsp;&nbsp; scp -r user@host:dir dir &mdash; secure copy the directory dir from remote server to the directory dir on your machine<br /><br />&nbsp;&nbsp;&nbsp; ssh user@host &mdash; connect to host as user<br /><br />&nbsp;&nbsp;&nbsp; ssh -p port user@host &mdash; connect to host on port as user<br /><br />&nbsp;&nbsp;&nbsp; ssh-copy-id user@host &mdash; add your key to host for user to enable a keyed or passwordless login<br /><br />&nbsp;&nbsp;&nbsp; ping host &mdash; ping host and output results<br /><br />&nbsp;&nbsp;&nbsp; whois domain &mdash; get information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig domain &mdash; get DNS information for domain<br /><br />&nbsp;&nbsp;&nbsp; dig -x host &mdash; reverse lookup host<br /><br />&nbsp;&nbsp;&nbsp; lsof -i tcp:1337 &mdash; list all processes running on port 1337<br />&nbsp;&nbsp;&nbsp; Searching<br /><br />&nbsp;&nbsp;&nbsp; grep pattern files &mdash; search for pattern in files<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir &mdash; search recursively for pattern in dir<br /><br />&nbsp;&nbsp;&nbsp; grep -rn pattern dir &mdash; search recursively for pattern in dir and show the line number found<br /><br />&nbsp;&nbsp;&nbsp; grep -r pattern dir --include='*.ext &mdash; search recursively for pattern in dir and only search in files with .ext extension<br /><br />&nbsp;&nbsp;&nbsp; command | grep pattern &mdash; search for pattern in the output of command<br /><br />&nbsp;&nbsp;&nbsp; find file &mdash; find all instances of file in real system<br /><br />&nbsp;&nbsp;&nbsp; locate file &mdash; find all instances of file using indexed database built from the updatedb command. Much faster than find<br /><br />&nbsp;&nbsp;&nbsp; sed -i 's/day/night/g' file &mdash; find all occurrences of day in a file and replace them with night - s means substitude and g means global - sed also supports regular expressions<br />&nbsp;&nbsp;&nbsp; Compression<br /><br />&nbsp;&nbsp;&nbsp; tar cf file.tar files &mdash; create a tar named file.tar containing files<br /><br />&nbsp;&nbsp;&nbsp; tar xf file.tar &mdash; extract the files from file.tar<br /><br />&nbsp;&nbsp;&nbsp; tar czf file.tar.gz files &mdash; create a tar with Gzip compression<br /><br />&nbsp;&nbsp;&nbsp; tar xzf file.tar.gz &mdash; extract a tar using Gzip<br /><br />&nbsp;&nbsp;&nbsp; gzip file &mdash; compresses file and renames it to file.gz<br /><br />&nbsp;&nbsp;&nbsp; gzip -d file.gz &mdash; decompresses file.gz back to file<br />&nbsp;&nbsp;&nbsp; Shortcuts<br /><br />&nbsp;&nbsp;&nbsp; ctrl+a &mdash; move cursor to beginning of line<br /><br />&nbsp;&nbsp;&nbsp; ctrl+f &mdash; move cursor to end of line<br /><br />&nbsp;&nbsp;&nbsp; alt+f &mdash; move cursor forward 1 word<br /><br />&nbsp;&nbsp;&nbsp; alt+b &mdash; move cursor backward 1 word</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/36525/installing-bandage-on-ubunty</guid>
	<pubDate>Tue, 08 May 2018 08:03:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/36525/installing-bandage-on-ubunty</link>
	<title><![CDATA[Installing Bandage on Ubunty !]]></title>
	<description><![CDATA[<p>The following instructions successfully build Bandage (https://github.com/rrwick/Bandage ) on a fresh installation of Ubuntu 14.04:</p><ol>
<li>Ensure the package lists are up-to-date:&nbsp;<code>sudo apt-get update</code></li>
<li>Install prerequisite packages:&nbsp;<code>sudo apt-get install build-essential git qtbase5-dev libqt5svg5-dev</code></li>
<li>Download the Bandage code from GitHub:&nbsp;<code>git clone https://github.com/rrwick/Bandage.git</code></li>
<li>Open a terminal in the Bandage directory.</li>
<li>Set the environment variable to specify that you will be using Qt 5, not Qt 4:&nbsp;<code>export QT_SELECT=5</code></li>
<li>Run qmake to generate a Makefile:&nbsp;<code>qmake</code></li>
<li>Build the program:&nbsp;<code>make</code></li>
<li><code>Bandage</code>&nbsp;should now be an executable file.</li>
<li>Optionally, copy the program into /usr/local/bin:&nbsp;<code>sudo make install</code>. The Bandage build directory can then be deleted.</li>
</ol><p>➜ Tools git:(master) ✗ sudo apt-get update<br />[sudo] password for urbe:&nbsp;<br />Hit:1 http://ppa.launchpad.net/webupd8team/atom/ubuntu xenial InRelease<br />Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]&nbsp;<br />Hit:3 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease&nbsp;<br />Hit:4 http://be.archive.ubuntu.com/ubuntu xenial InRelease&nbsp;<br />Get:5 http://be.archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]<br />Get:6 http://be.archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]&nbsp;<br />Get:7 https://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease [3.590 B]&nbsp;<br />Hit:8 https://download.docker.com/linux/ubuntu xenial InRelease&nbsp;<br />Ign:9 http://download.opensuse.org/repositories/home:/sionescu/Debian ./ InRelease&nbsp;<br />Hit:10 http://download.opensuse.org/repositories/home:/sionescu/Debian ./ Release&nbsp;<br />Get:11 http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease [6.372 B]<br />Get:12 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [484 kB]<br />Get:13 http://security.ubuntu.com/ubuntu xenial-security/main i386 Packages [433 kB]<br />Get:14 http://security.ubuntu.com/ubuntu xenial-security/main Translation-en [209 kB]<br />Get:15 http://security.ubuntu.com/ubuntu xenial-security/main amd64 DEP-11 Metadata [67,5 kB]<br />Get:16 http://security.ubuntu.com/ubuntu xenial-security/main DEP-11 64x64 Icons [68,0 kB]&nbsp;<br />Get:17 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 DEP-11 Metadata [107 kB]<br />Get:18 http://security.ubuntu.com/ubuntu xenial-security/universe DEP-11 64x64 Icons [147 kB]<br />Get:19 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [769 kB]&nbsp;<br />Get:20 http://be.archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages [710 kB]&nbsp;<br />Get:21 http://be.archive.ubuntu.com/ubuntu xenial-updates/main Translation-en [319 kB]<br />Get:22 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 DEP-11 Metadata [319 kB]<br />Get:24 http://be.archive.ubuntu.com/ubuntu xenial-updates/main DEP-11 64x64 Icons [228 kB]&nbsp;<br />Get:25 http://be.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 DEP-11 Metadata [246 kB]<br />Err:11 http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease&nbsp;<br />The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />Get:26 http://be.archive.ubuntu.com/ubuntu xenial-updates/universe DEP-11 64x64 Icons [331 kB]<br />Get:27 http://be.archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 DEP-11 Metadata [5.964 B]<br />Get:28 http://be.archive.ubuntu.com/ubuntu xenial-backports/main amd64 DEP-11 Metadata [3.328 B]<br />Get:29 http://be.archive.ubuntu.com/ubuntu xenial-backports/universe amd64 DEP-11 Metadata [5.088 B]<br />Fetched 4.779 kB in 2s (1.606 kB/s)&nbsp;<br />Reading package lists... Done<br />W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://packages.cloud.google.com/apt cloud-sdk-xenial InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />W: Failed to fetch http://packages.cloud.google.com/apt/dists/cloud-sdk-xenial/InRelease The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 6A030B21BA07F4FB<br />W: Some index files failed to download. They have been ignored, or old ones used instead.<br />➜ Tools git:(master) ✗ sudo apt-get install build-essential git qtbase5-dev libqt5svg5-dev<br />Reading package lists... Done<br />Building dependency tree&nbsp;<br />Reading state information... Done<br />build-essential is already the newest version (12.1ubuntu2).<br />git is already the newest version (1:2.7.4-0ubuntu1.3).<br />The following packages were automatically installed and are no longer required:<br />bridge-utils containerd linux-headers-4.4.0-116 linux-headers-4.4.0-116-generic linux-headers-4.4.0-21 linux-headers-4.4.0-21-generic linux-image-4.4.0-116-generic linux-image-4.4.0-21-generic<br />linux-image-extra-4.4.0-116-generic linux-image-extra-4.4.0-21-generic linux-signed-image-4.4.0-116-generic runc ubuntu-fan<br />Use 'sudo apt autoremove' to remove them.<br />The following additional packages will be installed:<br />libdrm-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa libgles2-mesa-dev libglu1-mesa-dev libmirclient-dev libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libprotobuf-dev libprotobuf9v5<br />libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5test5 libqt5widgets5 libqt5xml5 libwayland-bin<br />libwayland-dev libx11-xcb-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-glx0-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present-dev libxcb-randr0 libxcb-randr0-dev libxcb-render-util0 libxcb-render0-dev<br />libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xkb1 libxdamage-dev libxext-dev libxfixes-dev libxkbcommon-dev libxkbcommon-x11-0 libxshmfence-dev libxxf86vm-dev mesa-common-dev qt5-qmake<br />qtbase5-dev-tools qttranslations5-l10n x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev x11proto-xext-dev x11proto-xf86vidmode-dev<br />Suggested packages:<br />libqt5libqgtk2 qt5-image-formats-plugins qtwayland5 libxext-doc libmysqlclient-dev libpq-dev libsqlite3-dev unixodbc-dev<br />The following NEW packages will be installed:<br />libdrm-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa libgles2-mesa-dev libglu1-mesa-dev libmirclient-dev libmircommon-dev libmircookie-dev libmircookie2 libmircore-dev libprotobuf-dev libprotobuf9v5<br />libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5svg5-dev libqt5test5 libqt5widgets5 libqt5xml5<br />libwayland-bin libwayland-dev libx11-xcb-dev libxcb-dri2-0-dev libxcb-dri3-dev libxcb-glx0-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present-dev libxcb-randr0 libxcb-randr0-dev libxcb-render-util0<br />libxcb-render0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xkb1 libxdamage-dev libxext-dev libxfixes-dev libxkbcommon-dev libxkbcommon-x11-0 libxshmfence-dev libxxf86vm-dev mesa-common-dev<br />qt5-qmake qtbase5-dev qtbase5-dev-tools qttranslations5-l10n x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev x11proto-xext-dev x11proto-xf86vidmode-dev<br />0 upgraded, 64 newly installed, 0 to remove and 11 not upgraded.<br />Need to get 15,2 MB of archives.<br />After this operation, 78,5 MB of additional disk space will be used.<br />Do you want to continue? [Y/n] Y<br />Get:1 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5core5a amd64 5.5.1+dfsg-16ubuntu7.5 [1.817 kB]<br />Get:2 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5dbus5 amd64 5.5.1+dfsg-16ubuntu7.5 [175 kB]<br />Get:3 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5network5 amd64 5.5.1+dfsg-16ubuntu7.5 [540 kB]<br />Get:4 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-icccm4 amd64 0.4.1-1ubuntu1 [10,4 kB]<br />Get:5 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-image0 amd64 0.4.0-1build1 [12,3 kB]<br />Get:6 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-keysyms1 amd64 0.4.0-1 [8.406 B]<br />Get:7 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-randr0 amd64 1.11.1-1ubuntu1 [14,4 kB]<br />Get:8 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-render-util0 amd64 0.3.9-1 [9.638 B]<br />Get:9 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-xkb1 amd64 1.11.1-1ubuntu1 [29,2 kB]<br />Get:10 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxkbcommon-x11-0 amd64 0.5.0-1ubuntu2 [13,5 kB]<br />Get:11 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5gui5 amd64 5.5.1+dfsg-16ubuntu7.5 [2.290 kB]<br />Get:12 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5widgets5 amd64 5.5.1+dfsg-16ubuntu7.5 [2.252 kB]<br />Get:13 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libqt5svg5 amd64 5.5.1-2build1 [128 kB]<br />Get:14 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libqt5svg5-dev amd64 5.5.1-2build1 [9.724 B]<br />Get:15 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdrm-dev amd64 2.4.83-1~16.04.1 [229 kB]<br />Get:16 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-dri2-dev all 2.8-2 [12,6 kB]<br />Get:17 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-gl-dev all 1.4.17-1 [17,9 kB]<br />Get:18 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-xext-dev all 7.3.0-1 [212 kB]<br />Get:19 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxext-dev amd64 2:1.3.3-1 [82,1 kB]<br />Get:20 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-xf86vidmode-dev all 2.3.1-2 [6.116 B]<br />Get:21 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxxf86vm-dev amd64 1:1.1.4-1 [13,3 kB]<br />Get:22 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-fixes-dev all 1:5.0-2ubuntu2 [14,2 kB]<br />Get:23 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxfixes-dev amd64 1:5.0.1-2 [10,9 kB]<br />Get:24 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 x11proto-damage-dev all 1:1.2.1-2 [8.286 B]<br />Get:25 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxdamage-dev amd64 1:1.1.4-2 [5.028 B]<br />Get:26 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-glx0-dev amd64 1.11.1-1ubuntu1 [26,9 kB]<br />Get:27 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri2-0-dev amd64 1.11.1-1ubuntu1 [8.384 B]<br />Get:28 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-dri3-dev amd64 1.11.1-1ubuntu1 [5.752 B]<br />Get:29 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-render0-dev amd64 1.11.1-1ubuntu1 [15,3 kB]<br />Get:30 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-randr0-dev amd64 1.11.1-1ubuntu1 [18,2 kB]<br />Get:31 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-shape0-dev amd64 1.11.1-1ubuntu1 [6.900 B]<br />Get:32 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-xfixes0-dev amd64 1.11.1-1ubuntu1 [11,2 kB]<br />Get:33 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-sync-dev amd64 1.11.1-1ubuntu1 [10,1 kB]<br />Get:34 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxcb-present-dev amd64 1.11.1-1ubuntu1 [6.618 B]<br />Get:35 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxshmfence-dev amd64 1.2-1 [3.676 B]<br />Get:36 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libx11-xcb-dev amd64 2:1.6.3-1ubuntu2 [9.730 B]<br />Get:37 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwayland-bin amd64 1.12.0-1~ubuntu16.04.3 [18,4 kB]<br />Get:38 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libwayland-dev amd64 1.12.0-1~ubuntu16.04.3 [92,4 kB]<br />Get:39 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircore-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [23,7 kB]<br />Get:40 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libprotobuf9v5 amd64 2.6.1-1.3 [326 kB]<br />Get:41 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libprotobuf-dev amd64 2.6.1-1.3 [473 kB]<br />Get:42 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libxkbcommon-dev amd64 0.5.0-1ubuntu2 [231 kB]<br />Get:43 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircommon-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [14,9 kB]<br />Get:44 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircookie2 amd64 0.26.3+16.04.20170605-0ubuntu1.1 [22,5 kB]<br />Get:45 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmircookie-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [5.152 B]<br />Get:46 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmirclient-dev amd64 0.26.3+16.04.20170605-0ubuntu1.1 [42,6 kB]<br />Get:47 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libegl1-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [19,9 kB]<br />Get:48 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgles2-mesa amd64 17.2.8-0ubuntu0~16.04.1 [13,4 kB]<br />Get:49 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgles2-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [40,2 kB]<br />Get:50 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 mesa-common-dev amd64 17.2.8-0ubuntu0~16.04.1 [525 kB]<br />Get:51 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgl1-mesa-dev amd64 17.2.8-0ubuntu0~16.04.1 [4.456 B]<br />Get:52 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 libglu1-mesa-dev amd64 9.0.0-2.1 [202 kB]<br />Get:53 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5concurrent5 amd64 5.5.1+dfsg-16ubuntu7.5 [24,3 kB]<br />Get:54 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5opengl5 amd64 5.5.1+dfsg-16ubuntu7.5 [128 kB]<br />Get:55 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5printsupport5 amd64 5.5.1+dfsg-16ubuntu7.5 [174 kB]<br />Get:56 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5sql5 amd64 5.5.1+dfsg-16ubuntu7.5 [104 kB]<br />Get:57 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5test5 amd64 5.5.1+dfsg-16ubuntu7.5 [84,5 kB]<br />Get:58 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5xml5 amd64 5.5.1+dfsg-16ubuntu7.5 [91,8 kB]<br />Get:59 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qt5-qmake amd64 5.5.1+dfsg-16ubuntu7.5 [1.192 kB]<br />Get:60 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qtbase5-dev-tools amd64 5.5.1+dfsg-16ubuntu7.5 [1.056 kB]<br />Get:61 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 qtbase5-dev amd64 5.5.1+dfsg-16ubuntu7.5 [931 kB]<br />Get:62 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5opengl5-dev amd64 5.5.1+dfsg-16ubuntu7.5 [31,5 kB]<br />Get:63 http://be.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libqt5sql5-sqlite amd64 5.5.1+dfsg-16ubuntu7.5 [33,0 kB]<br />Get:64 http://be.archive.ubuntu.com/ubuntu xenial/main amd64 qttranslations5-l10n all 5.5.1-2build1 [1.210 kB]<br />Fetched 15,2 MB in 4s (3.099 kB/s)&nbsp;<br />Extracting templates from packages: 100%<br />Selecting previously unselected package libqt5core5a:amd64.<br />(Reading database ... 480949 files and directories currently installed.)<br />Preparing to unpack .../libqt5core5a_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5dbus5:amd64.<br />Preparing to unpack .../libqt5dbus5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5network5:amd64.<br />Preparing to unpack .../libqt5network5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libxcb-icccm4:amd64.<br />Preparing to unpack .../libxcb-icccm4_0.4.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-icccm4:amd64 (0.4.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-image0:amd64.<br />Preparing to unpack .../libxcb-image0_0.4.0-1build1_amd64.deb ...<br />Unpacking libxcb-image0:amd64 (0.4.0-1build1) ...<br />Selecting previously unselected package libxcb-keysyms1:amd64.<br />Preparing to unpack .../libxcb-keysyms1_0.4.0-1_amd64.deb ...<br />Unpacking libxcb-keysyms1:amd64 (0.4.0-1) ...<br />Selecting previously unselected package libxcb-randr0:amd64.<br />Preparing to unpack .../libxcb-randr0_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-randr0:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-render-util0:amd64.<br />Preparing to unpack .../libxcb-render-util0_0.3.9-1_amd64.deb ...<br />Unpacking libxcb-render-util0:amd64 (0.3.9-1) ...<br />Selecting previously unselected package libxcb-xkb1:amd64.<br />Preparing to unpack .../libxcb-xkb1_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-xkb1:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxkbcommon-x11-0:amd64.<br />Preparing to unpack .../libxkbcommon-x11-0_0.5.0-1ubuntu2_amd64.deb ...<br />Unpacking libxkbcommon-x11-0:amd64 (0.5.0-1ubuntu2) ...<br />Selecting previously unselected package libqt5gui5:amd64.<br />Preparing to unpack .../libqt5gui5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5widgets5:amd64.<br />Preparing to unpack .../libqt5widgets5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5svg5:amd64.<br />Preparing to unpack .../libqt5svg5_5.5.1-2build1_amd64.deb ...<br />Unpacking libqt5svg5:amd64 (5.5.1-2build1) ...<br />Selecting previously unselected package libqt5svg5-dev:amd64.<br />Preparing to unpack .../libqt5svg5-dev_5.5.1-2build1_amd64.deb ...<br />Unpacking libqt5svg5-dev:amd64 (5.5.1-2build1) ...<br />Selecting previously unselected package libdrm-dev:amd64.<br />Preparing to unpack .../libdrm-dev_2.4.83-1~16.04.1_amd64.deb ...<br />Unpacking libdrm-dev:amd64 (2.4.83-1~16.04.1) ...<br />Selecting previously unselected package x11proto-dri2-dev.<br />Preparing to unpack .../x11proto-dri2-dev_2.8-2_all.deb ...<br />Unpacking x11proto-dri2-dev (2.8-2) ...<br />Selecting previously unselected package x11proto-gl-dev.<br />Preparing to unpack .../x11proto-gl-dev_1.4.17-1_all.deb ...<br />Unpacking x11proto-gl-dev (1.4.17-1) ...<br />Selecting previously unselected package x11proto-xext-dev.<br />Preparing to unpack .../x11proto-xext-dev_7.3.0-1_all.deb ...<br />Unpacking x11proto-xext-dev (7.3.0-1) ...<br />Selecting previously unselected package libxext-dev:amd64.<br />Preparing to unpack .../libxext-dev_2%3a1.3.3-1_amd64.deb ...<br />Unpacking libxext-dev:amd64 (2:1.3.3-1) ...<br />Selecting previously unselected package x11proto-xf86vidmode-dev.<br />Preparing to unpack .../x11proto-xf86vidmode-dev_2.3.1-2_all.deb ...<br />Unpacking x11proto-xf86vidmode-dev (2.3.1-2) ...<br />Selecting previously unselected package libxxf86vm-dev:amd64.<br />Preparing to unpack .../libxxf86vm-dev_1%3a1.1.4-1_amd64.deb ...<br />Unpacking libxxf86vm-dev:amd64 (1:1.1.4-1) ...<br />Selecting previously unselected package x11proto-fixes-dev.<br />Preparing to unpack .../x11proto-fixes-dev_1%3a5.0-2ubuntu2_all.deb ...<br />Unpacking x11proto-fixes-dev (1:5.0-2ubuntu2) ...<br />Selecting previously unselected package libxfixes-dev:amd64.<br />Preparing to unpack .../libxfixes-dev_1%3a5.0.1-2_amd64.deb ...<br />Unpacking libxfixes-dev:amd64 (1:5.0.1-2) ...<br />Selecting previously unselected package x11proto-damage-dev.<br />Preparing to unpack .../x11proto-damage-dev_1%3a1.2.1-2_all.deb ...<br />Unpacking x11proto-damage-dev (1:1.2.1-2) ...<br />Selecting previously unselected package libxdamage-dev:amd64.<br />Preparing to unpack .../libxdamage-dev_1%3a1.1.4-2_amd64.deb ...<br />Unpacking libxdamage-dev:amd64 (1:1.1.4-2) ...<br />Selecting previously unselected package libxcb-glx0-dev:amd64.<br />Preparing to unpack .../libxcb-glx0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-glx0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-dri2-0-dev:amd64.<br />Preparing to unpack .../libxcb-dri2-0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-dri2-0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-dri3-dev:amd64.<br />Preparing to unpack .../libxcb-dri3-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-dri3-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-render0-dev:amd64.<br />Preparing to unpack .../libxcb-render0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-render0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-randr0-dev:amd64.<br />Preparing to unpack .../libxcb-randr0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-randr0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-shape0-dev:amd64.<br />Preparing to unpack .../libxcb-shape0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-shape0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-xfixes0-dev:amd64.<br />Preparing to unpack .../libxcb-xfixes0-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-xfixes0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-sync-dev:amd64.<br />Preparing to unpack .../libxcb-sync-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-sync-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxcb-present-dev:amd64.<br />Preparing to unpack .../libxcb-present-dev_1.11.1-1ubuntu1_amd64.deb ...<br />Unpacking libxcb-present-dev:amd64 (1.11.1-1ubuntu1) ...<br />Selecting previously unselected package libxshmfence-dev:amd64.<br />Preparing to unpack .../libxshmfence-dev_1.2-1_amd64.deb ...<br />Unpacking libxshmfence-dev:amd64 (1.2-1) ...<br />Selecting previously unselected package libx11-xcb-dev:amd64.<br />Preparing to unpack .../libx11-xcb-dev_2%3a1.6.3-1ubuntu2_amd64.deb ...<br />Unpacking libx11-xcb-dev:amd64 (2:1.6.3-1ubuntu2) ...<br />Selecting previously unselected package libwayland-bin.<br />Preparing to unpack .../libwayland-bin_1.12.0-1~ubuntu16.04.3_amd64.deb ...<br />Unpacking libwayland-bin (1.12.0-1~ubuntu16.04.3) ...<br />Selecting previously unselected package libwayland-dev:amd64.<br />Preparing to unpack .../libwayland-dev_1.12.0-1~ubuntu16.04.3_amd64.deb ...<br />Unpacking libwayland-dev:amd64 (1.12.0-1~ubuntu16.04.3) ...<br />Selecting previously unselected package libmircore-dev:amd64.<br />Preparing to unpack .../libmircore-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircore-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libprotobuf9v5:amd64.<br />Preparing to unpack .../libprotobuf9v5_2.6.1-1.3_amd64.deb ...<br />Unpacking libprotobuf9v5:amd64 (2.6.1-1.3) ...<br />Selecting previously unselected package libprotobuf-dev:amd64.<br />Preparing to unpack .../libprotobuf-dev_2.6.1-1.3_amd64.deb ...<br />Unpacking libprotobuf-dev:amd64 (2.6.1-1.3) ...<br />Selecting previously unselected package libxkbcommon-dev.<br />Preparing to unpack .../libxkbcommon-dev_0.5.0-1ubuntu2_amd64.deb ...<br />Unpacking libxkbcommon-dev (0.5.0-1ubuntu2) ...<br />Selecting previously unselected package libmircommon-dev:amd64.<br />Preparing to unpack .../libmircommon-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircommon-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmircookie2:amd64.<br />Preparing to unpack .../libmircookie2_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircookie2:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmircookie-dev:amd64.<br />Preparing to unpack .../libmircookie-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmircookie-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libmirclient-dev:amd64.<br />Preparing to unpack .../libmirclient-dev_0.26.3+16.04.20170605-0ubuntu1.1_amd64.deb ...<br />Unpacking libmirclient-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Selecting previously unselected package libegl1-mesa-dev:amd64.<br />Preparing to unpack .../libegl1-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libegl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgles2-mesa:amd64.<br />Preparing to unpack .../libgles2-mesa_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgles2-mesa:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgles2-mesa-dev:amd64.<br />Preparing to unpack .../libgles2-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgles2-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package mesa-common-dev:amd64.<br />Preparing to unpack .../mesa-common-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking mesa-common-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libgl1-mesa-dev:amd64.<br />Preparing to unpack .../libgl1-mesa-dev_17.2.8-0ubuntu0~16.04.1_amd64.deb ...<br />Unpacking libgl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Selecting previously unselected package libglu1-mesa-dev:amd64.<br />Preparing to unpack .../libglu1-mesa-dev_9.0.0-2.1_amd64.deb ...<br />Unpacking libglu1-mesa-dev:amd64 (9.0.0-2.1) ...<br />Selecting previously unselected package libqt5concurrent5:amd64.<br />Preparing to unpack .../libqt5concurrent5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5concurrent5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5opengl5:amd64.<br />Preparing to unpack .../libqt5opengl5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5printsupport5:amd64.<br />Preparing to unpack .../libqt5printsupport5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5sql5:amd64.<br />Preparing to unpack .../libqt5sql5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5test5:amd64.<br />Preparing to unpack .../libqt5test5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5xml5:amd64.<br />Preparing to unpack .../libqt5xml5_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qt5-qmake:amd64.<br />Preparing to unpack .../qt5-qmake_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qt5-qmake:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qtbase5-dev-tools.<br />Preparing to unpack .../qtbase5-dev-tools_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qtbase5-dev-tools (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qtbase5-dev:amd64.<br />Preparing to unpack .../qtbase5-dev_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking qtbase5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5opengl5-dev:amd64.<br />Preparing to unpack .../libqt5opengl5-dev_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5opengl5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package libqt5sql5-sqlite:amd64.<br />Preparing to unpack .../libqt5sql5-sqlite_5.5.1+dfsg-16ubuntu7.5_amd64.deb ...<br />Unpacking libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Selecting previously unselected package qttranslations5-l10n.<br />Preparing to unpack .../qttranslations5-l10n_5.5.1-2build1_all.deb ...<br />Unpacking qttranslations5-l10n (5.5.1-2build1) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />Processing triggers for man-db (2.7.5-1) ...<br />Setting up libqt5core5a:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5dbus5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5network5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libxcb-icccm4:amd64 (0.4.1-1ubuntu1) ...<br />Setting up libxcb-image0:amd64 (0.4.0-1build1) ...<br />Setting up libxcb-keysyms1:amd64 (0.4.0-1) ...<br />Setting up libxcb-randr0:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-render-util0:amd64 (0.3.9-1) ...<br />Setting up libxcb-xkb1:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxkbcommon-x11-0:amd64 (0.5.0-1ubuntu2) ...<br />Setting up libqt5gui5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5widgets5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5svg5:amd64 (5.5.1-2build1) ...<br />Setting up libqt5svg5-dev:amd64 (5.5.1-2build1) ...<br />Setting up libdrm-dev:amd64 (2.4.83-1~16.04.1) ...<br />Setting up x11proto-dri2-dev (2.8-2) ...<br />Setting up x11proto-gl-dev (1.4.17-1) ...<br />Setting up x11proto-xext-dev (7.3.0-1) ...<br />Setting up libxext-dev:amd64 (2:1.3.3-1) ...<br />Setting up x11proto-xf86vidmode-dev (2.3.1-2) ...<br />Setting up libxxf86vm-dev:amd64 (1:1.1.4-1) ...<br />Setting up x11proto-fixes-dev (1:5.0-2ubuntu2) ...<br />Setting up libxfixes-dev:amd64 (1:5.0.1-2) ...<br />Setting up x11proto-damage-dev (1:1.2.1-2) ...<br />Setting up libxdamage-dev:amd64 (1:1.1.4-2) ...<br />Setting up libxcb-glx0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-dri2-0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-dri3-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-render0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-randr0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-shape0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-xfixes0-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-sync-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxcb-present-dev:amd64 (1.11.1-1ubuntu1) ...<br />Setting up libxshmfence-dev:amd64 (1.2-1) ...<br />Setting up libx11-xcb-dev:amd64 (2:1.6.3-1ubuntu2) ...<br />Setting up libwayland-bin (1.12.0-1~ubuntu16.04.3) ...<br />Setting up libwayland-dev:amd64 (1.12.0-1~ubuntu16.04.3) ...<br />Setting up libmircore-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libprotobuf9v5:amd64 (2.6.1-1.3) ...<br />Setting up libprotobuf-dev:amd64 (2.6.1-1.3) ...<br />Setting up libxkbcommon-dev (0.5.0-1ubuntu2) ...<br />Setting up libmircommon-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmircookie2:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmircookie-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libmirclient-dev:amd64 (0.26.3+16.04.20170605-0ubuntu1.1) ...<br />Setting up libegl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgles2-mesa:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgles2-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up mesa-common-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libgl1-mesa-dev:amd64 (17.2.8-0ubuntu0~16.04.1) ...<br />Setting up libglu1-mesa-dev:amd64 (9.0.0-2.1) ...<br />Setting up libqt5concurrent5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5opengl5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5printsupport5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5sql5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5test5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5xml5:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qt5-qmake:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qtbase5-dev-tools (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qtbase5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5opengl5-dev:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up libqt5sql5-sqlite:amd64 (5.5.1+dfsg-16ubuntu7.5) ...<br />Setting up qttranslations5-l10n (5.5.1-2build1) ...<br />Processing triggers for libc-bin (2.23-0ubuntu10) ...<br />➜ Tools git:(master) ✗ git clone https://github.com/rrwick/Bandage.git<br />Cloning into 'Bandage'...<br />remote: Counting objects: 7813, done.<br />remote: Total 7813 (delta 0), reused 0 (delta 0), pack-reused 7813<br />Receiving objects: 100% (7813/7813), 27.43 MiB | 16.33 MiB/s, done.<br />Resolving deltas: 100% (5973/5973), done.<br />Checking connectivity... done.<br />➜ Tools git:(master) ✗ cd Bandage&nbsp;<br />➜ Bandage git:(master) ls<br />Bandage.pro BandageTests.pro blast build_scripts command_line COPYING graph images ogdf program README.md tests ui<br />➜ Bandage git:(master) export QT_SELECT=5<br />➜ Bandage git:(master) qmake<br />➜ Bandage git:(master) ✗ make<br />/home/urbe/anaconda3/bin/uic ui/mainwindow.ui -o ui_mainwindow.h<br />/home/urbe/anaconda3/bin/uic ui/settingsdialog.ui -o ui_settingsdialog.h<br />/home/urbe/anaconda3/bin/uic ui/aboutdialog.ui -o ui_aboutdialog.h<br />/home/urbe/anaconda3/bin/uic ui/enteroneblastquerydialog.ui -o ui_enteroneblastquerydialog.h<br />/home/urbe/anaconda3/bin/uic ui/blastsearchdialog.ui -o ui_blastsearchdialog.h<br />/home/urbe/anaconda3/bin/uic ui/myprogressdialog.ui -o ui_myprogressdialog.h<br />/home/urbe/anaconda3/bin/uic ui/pathspecifydialog.ui -o ui_pathspecifydialog.h<br />/home/urbe/anaconda3/bin/uic ui/querypathsdialog.ui -o ui_querypathsdialog.h<br />/home/urbe/anaconda3/bin/uic ui/blasthitfiltersdialog.ui -o ui_blasthitfiltersdialog.h<br />/home/urbe/anaconda3/bin/uic ui/changenodenamedialog.ui -o ui_changenodenamedialog.h<br />/home/urbe/anaconda3/bin/uic ui/graphinfodialog.ui -o ui_graphinfodialog.h<br />/home/urbe/anaconda3/bin/uic ui/changenodedepthdialog.ui -o ui_changenodedepthdialog.h<br />g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -Iui -I/usr/include -I../../anaconda3/include/qt -I../../anaconda3/include/qt/QtSvg -I../../anaconda3/include/qt/QtWidgets -I../../anaconda3/include/qt/QtGui -I../../anaconda3/include/qt/QtCore -I. -I. -I../../anaconda3/mkspecs/linux-g++ -o main.o program/main.cpp<br />g++ -c -pipe -O2 -std=gnu++0x -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_SVG_LIB -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -Iui -I/usr/include -I../../anaconda3/include/qt -I../../anaconda3/include/qt/QtSvg -I../../anaconda3/include/qt/QtWidgets -I../../anaconda3/include/qt/QtGui -I../../anaconda3/include/qt/QtCore -I. -I. -I../../anaconda3/mkspecs/linux-g++ -o settings.o program/settings.cpp<br />....</p><p>...<br />g++ -Wl,-O1 -Wl,-rpath,/home/urbe/anaconda3/lib -o Bandage main.o settings.o globals.o graphlayoutworker.o debruijnnode.o debruijnedge.o graphicsitemnode.o graphicsitemedge.o mainwindow.o graphicsviewzoom.o settingsdialog.o mygraphicsview.o mygraphicsscene.o aboutdialog.o enteroneblastquerydialog.o blasthit.o blastqueries.o blastsearchdialog.o infotextwidget.o assemblygraph.o verticalscrollarea.o myprogressdialog.o nodewidthvisualaid.o verticallabel.o load.o image.o commoncommandlinefunctions.o mytablewidget.o buildblastdatabaseworker.o colourbutton.o blastquery.o runblastsearchworker.o blastsearch.o path.o pathspecifydialog.o graphlocation.o tablewidgetitemint.o tablewidgetitemdouble.o tablewidgetitemshown.o memory.o querypathspushbutton.o querypathsdialog.o blastquerypath.o blasthitfiltersdialog.o scinot.o changenodenamedialog.o querypathsequencecopybutton.o querypaths.o info.o reduce.o Graph.o GraphAttributes.o FMMMLayout.o geometry.o ClusterGraphAttributes.o FruchtermanReingold.o NMM.o GmlParser.o simple_graph_alg.o basic.o XmlParser.o String.o Hashing.o PoolMemoryAllocator.o GraphCopy.o CombinatorialEmbedding.o OgmlParser.o ClusterGraph.o Math.o EdgeAttributes.o NodeAttributes.o MAARPacking.o Multilevel.o numexcept.o Set.o Ogml.o DinoXmlParser.o DinoXmlScanner.o DinoTools.o DinoLineBuffer.o System.o QuadTreeNM.o QuadTreeNodeNM.o Constraint.o MultilevelGraph.o graphinfodialog.o tablewidgetitemname.o changenodedepthdialog.o qrc_images.o moc_graphlayoutworker.o moc_mainwindow.o moc_graphicsviewzoom.o moc_settingsdialog.o moc_mygraphicsview.o moc_mygraphicsscene.o moc_aboutdialog.o moc_enteroneblastquerydialog.o moc_blastquery.o moc_blastsearchdialog.o moc_infotextwidget.o moc_assemblygraph.o moc_verticalscrollarea.o moc_myprogressdialog.o moc_nodewidthvisualaid.o moc_verticallabel.o moc_mytablewidget.o moc_buildblastdatabaseworker.o moc_colourbutton.o moc_runblastsearchworker.o moc_pathspecifydialog.o moc_querypathspushbutton.o moc_querypathsdialog.o moc_blasthitfiltersdialog.o moc_changenodenamedialog.o moc_querypathsequencecopybutton.o moc_graphinfodialog.o moc_changenodedepthdialog.o -L/usr/lib -L/home/urbe/anaconda3/lib -lQt5Svg -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread&nbsp;<br />➜ Bandage git:(master) ✗ ls&nbsp;<br />aboutdialog.o DinoTools.o Makefile moc_infotextwidget.cpp moc_verticalscrollarea.o scinot.o<br />assemblygraph.o DinoXmlParser.o Math.o moc_infotextwidget.o MultilevelGraph.o Set.o<br />Bandage DinoXmlScanner.o memory.o moc_mainwindow.cpp Multilevel.o settingsdialog.o<br />Bandage.pro EdgeAttributes.o moc_aboutdialog.cpp moc_mainwindow.o mygraphicsscene.o settings.o<br />BandageTests.pro enteroneblastquerydialog.o moc_aboutdialog.o moc_mygraphicsscene.cpp mygraphicsview.o simple_graph_alg.o<br />basic.o FMMMLayout.o moc_assemblygraph.cpp moc_mygraphicsscene.o myprogressdialog.o String.o<br />blast FruchtermanReingold.o moc_assemblygraph.o moc_mygraphicsview.cpp mytablewidget.o System.o<br />blasthitfiltersdialog.o geometry.o moc_blasthitfiltersdialog.cpp moc_mygraphicsview.o NMM.o tablewidgetitemdouble.o<br />blasthit.o globals.o moc_blasthitfiltersdialog.o moc_myprogressdialog.cpp NodeAttributes.o tablewidgetitemint.o<br />blastqueries.o GmlParser.o moc_blastquery.cpp moc_myprogressdialog.o nodewidthvisualaid.o tablewidgetitemname.o<br />blastquery.o graph moc_blastquery.o moc_mytablewidget.cpp numexcept.o tablewidgetitemshown.o<br />blastquerypath.o GraphAttributes.o moc_blastsearchdialog.cpp moc_mytablewidget.o ogdf tests<br />blastsearchdialog.o GraphCopy.o moc_blastsearchdialog.o moc_nodewidthvisualaid.cpp Ogml.o ui<br />blastsearch.o graphicsitemedge.o moc_buildblastdatabaseworker.cpp moc_nodewidthvisualaid.o OgmlParser.o ui_aboutdialog.h<br />buildblastdatabaseworker.o graphicsitemnode.o moc_buildblastdatabaseworker.o moc_pathspecifydialog.cpp path.o ui_blasthitfiltersdialog.h<br />build_scripts graphicsviewzoom.o moc_changenodedepthdialog.cpp moc_pathspecifydialog.o pathspecifydialog.o ui_blastsearchdialog.h<br />changenodedepthdialog.o graphinfodialog.o moc_changenodedepthdialog.o moc_querypathsdialog.cpp PoolMemoryAllocator.o ui_changenodedepthdialog.h<br />changenodenamedialog.o graphlayoutworker.o moc_changenodenamedialog.cpp moc_querypathsdialog.o program ui_changenodenamedialog.h<br />ClusterGraphAttributes.o graphlocation.o moc_changenodenamedialog.o moc_querypathsequencecopybutton.cpp qrc_images.cpp ui_enteroneblastquerydialog.h<br />ClusterGraph.o Graph.o moc_colourbutton.cpp moc_querypathsequencecopybutton.o qrc_images.o ui_graphinfodialog.h<br />colourbutton.o Hashing.o moc_colourbutton.o moc_querypathspushbutton.cpp QuadTreeNM.o ui_mainwindow.h<br />CombinatorialEmbedding.o image.o moc_enteroneblastquerydialog.cpp moc_querypathspushbutton.o QuadTreeNodeNM.o ui_myprogressdialog.h<br />command_line images moc_enteroneblastquerydialog.o moc_runblastsearchworker.cpp querypathsdialog.o ui_pathspecifydialog.h<br />commoncommandlinefunctions.o info.o moc_graphicsviewzoom.cpp moc_runblastsearchworker.o querypathsequencecopybutton.o ui_querypathsdialog.h<br />Constraint.o infotextwidget.o moc_graphicsviewzoom.o moc_settingsdialog.cpp querypaths.o ui_settingsdialog.h<br />COPYING load.o moc_graphinfodialog.cpp moc_settingsdialog.o querypathspushbutton.o verticallabel.o<br />debruijnedge.o MAARPacking.o moc_graphinfodialog.o moc_verticallabel.cpp README.md verticalscrollarea.o<br />debruijnnode.o main.o moc_graphlayoutworker.cpp moc_verticallabel.o reduce.o XmlParser.o<br />DinoLineBuffer.o mainwindow.o moc_graphlayoutworker.o moc_verticalscrollarea.cpp runblastsearchworker.o<br />➜ Bandage git:(master) ✗ ./Bandage</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/37677/installing-blat-on-linux</guid>
	<pubDate>Tue, 11 Sep 2018 08:17:35 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/37677/installing-blat-on-linux</link>
	<title><![CDATA[Installing BLAT on Linux !]]></title>
	<description><![CDATA[<p><span>It's been a while since I last installed BLAT and when I went to the download directory at UCSC:&nbsp;</span><a href="http://users.soe.ucsc.edu/~kent/src/">http://users.soe.ucsc.edu/~kent/src/</a><span>&nbsp;I found that the latest blast is now version 35 and that the code to download was:&nbsp;</span><a href="http://users.soe.ucsc.edu/~kent/src/blatSrc35.zip">blatSrc35.zip</a><span>. However, you can also get pre-compiled binaries at:&nbsp;</span><a href="http://hgdownload.cse.ucsc.edu/admin/exe/">http://hgdownload.cse.ucsc.edu/admin/exe/</a><span>&nbsp;and that there was a linux x86_64 executable for my architecture available at:&nbsp;</span><a href="http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/blat/">http://hgdownload.cse.ucsc.edu/admin/exe/linux.x86_64/blat/</a><span>. Though YYMV, BLAT can be a little bit of a tricky beast to get going, so I decided to download the source code and compile that.</span><br /><br /><span>I will be compiling this code as 'root' as a system tool in&nbsp;</span><code>/usr/local/src</code><span>, so do not scream at me for that.</span><br /><br /><span>First I created an /usr/local/src/blat directory and I copied the blatSrc35.zip file into that.</span><br /><br /><span>Next I used</span></p><pre><code>unzip blatSrc35.zip</code></pre><p><span>to unpack the archive. This gives a directory blatSrc now move into that directory.</span></p><pre><code>#cd blatSrc</code></pre><p><span>before you begin read the README file that comes with the source code.</span><br /><br /><span>One thing about building blat is that you need to set the MACHTYPE variable so that the BLAT sources know what type of machine you are compiling the software on.</span><br /><br /><span>on most *nix machines, typing</span></p><pre><code>echo $MACHTYPE</code></pre><p><span>will return the machine architecture type.</span><br /><br /><span>On my CentOS 6 based system this gave:</span></p><pre><code>x86_64-redhat-linux-gnu</code></pre><p><span>However, what BLAT requires is the 'short value' (ie the first part of the MACHTYPE). To correct this, in the bash shell type (change this to the correct MACHTYPE for your system)</span></p><pre><code>MACHTYPE=x86_64
export MACHTYPE</code></pre><p><span>now running the command:</span></p><pre><code>echo $MACHTYPE</code></pre><p><span>should give the correct short form of the MACHTYPE:</span></p><pre><code>x86_64</code></pre><p><span>now create the directory lib/$MACHTYPE in the source tree. ie:</span></p><pre><code>mkdir lib/$MACHTYPE</code></pre><p><span>For my machine, lib/x86_64 already existed, so I did not have to do this, but this is not the case for all architectures.</span><br /><br /><span>The BLAT code assumes that you are compiling BLAT as a non-privileged (ie non-root) user. As a result, you must create the directory for the executables to go into:</span><br /><br /><span>mkdir ~/bin/$MACHTYPE</span><br /><br /><span>If you are installing as a normal user, edit your .bashrc to add the following (change the x86_64 to be your MACHTYPE):</span><br /><br /><span>export PATH=~/bin/x86_64::$PATH</span><br /><br /><span>For me, though, this was not good enough. I wanted the executables in /usr/local/bin where all my other code goes. As a result I did some hackery...</span><br /><br /><span>There is a master make template in the&nbsp;</span><code>inc</code><span>&nbsp;directory called&nbsp;</span><code>common.mk</code><span>&nbsp;and I edited this file with the command:</span><br /><br /><span>vi inc/common.mk</span><br /><br /><span>I replaced the line</span></p><pre><code>    BINDIR=${HOME}/bin/${MACHTYPE}</code></pre><p><span>with</span></p><pre><code>    BINDIR=/usr/local/bin</code></pre><p><span>saved and quit (as this is in my path, I do not need to do anything else)</span><br /><br /><span>All the preparation is now done and you can create the blat executables by going into the toplevel of the blat source tree (for me it was&nbsp;</span><code>/usr/local/src/blat/blatSrc</code><span>, but change to wherever you unpacked blat into).</span><br /><br /><span>Now simply run the command:</span></p><pre><code>make</code></pre><p><span>to compile the code.</span><br /><br /><span>Blat installed cleanly and the executables were all neatly placed in /usr/local/bin/x86_64, just like I wanted.</span><br /><br /><span>now simply running the command:</span></p><pre><code>blat</code></pre><p><span>on the command line gives me information on blat and sample usage.</span><br /><br /><span>Blat is installed and it's installed properly in my system code tree!!!</span></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/43911/slurm-commands</guid>
	<pubDate>Wed, 06 Jul 2022 07:40:07 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/43911/slurm-commands</link>
	<title><![CDATA[SLURM Commands]]></title>
	<description><![CDATA[<h3>SLURM commands</h3><p>The following table shows SLURM commands on the SOE cluster.</p><table border="1">
<thead>
<tr><th>Command</th><th>Description</th></tr>
</thead>
<tbody>
<tr>
<td><strong>sbatch</strong></td>
<td>Submit batch scripts to the cluster</td>
</tr>
<tr>
<td><strong>scancel</strong></td>
<td>Signal jobs or job steps that are under the control of Slurm.</td>
</tr>
<tr>
<td><strong>sinfo</strong></td>
<td>View information about SLURM nodes and partitions.</td>
</tr>
<tr>
<td><strong>squeue</strong></td>
<td>View information about jobs located in the SLURM scheduling queue</td>
</tr>
<tr>
<td><strong>smap</strong></td>
<td>Graphically view information about SLURM jobs, partitions, and set configurations parameters</td>
</tr>
<tr>
<td><strong>sqlog</strong></td>
<td>View information about running and finished jobs</td>
</tr>
<tr>
<td><strong>sacct</strong></td>
<td>View resource accounting information for finished and running jobs</td>
</tr>
<tr>
<td><strong>sstat</strong></td>
<td>View resource accounting information for running jobs</td>
</tr>
</tbody>
</table><p><span>For more information, run&nbsp;</span><strong>man</strong><span>&nbsp;on the commands above. See some examples below.</span><br /><br /><span style="font-size: large;"><strong>1. Info about the partitions and nodes</strong></span><span></span><br /><span>List all the partitions available to you and the nodes therein:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sinfo
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>Nodes in state&nbsp;</span><tt>idle</tt><span>&nbsp;can accept new jobs.</span><br /><br /><span>Show a partition configuratuin, for example,&nbsp;</span><tt>SOE_main</tt><span></span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scontrol show partition=SOE_main
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>Show current info about a specific node:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scontrol show node=&lt;nodename&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>You can also specify a group of nodes in the command above. For example, if your MPI job is running across soenode05,06,35,36, you can execute the command below to get the info on the nodes you are interested in:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scontrol show node=soenode[05-06,35-36]
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>An informative parameter in the output to look at would be CPULoad. It allows you to see how your application utilizes the CPUs on the running nodes.</span><br /><br /><span style="font-size: large;"><strong>2. Submit scripts</strong></span><span></span><br /><span>The header in a submit script specifies job name, partition (queue), time limit, memory allocation, number of nodes, number of cores, and files to collect standard output and error at run time, for example</span></p><div><table border="1">
<tbody>
<tr>
<td>
<pre>#!/bin/bash

#SBATCH --job-name=OMP_run     # job name, "OMP_run"
#SBATCH --partition=SOE_main   # partition (queue)
#SBATCH -t 0-2:00              # time limit: (D-HH:MM) 
#SBATCH --mem=32000            # memory per node in MB 
#SBATCH --nodes=1              # number of nodes
#SBATCH --ntasks-per-node=16   # number of cores
#SBATCH --output=slurm.out     # file to collect standard output
#SBATCH --error=slurm.err      # file to collect standard errors
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>If the time limit is not specified in the submit script, SLURM will assign the default run time, 3 days. This means the job will be terminated by SLURM in 72 hrs. The maximum allowed run time is two weeks,&nbsp;</span><tt>14-0:00</tt><span>.</span><br /><span>If the memory limit is not requested, SLURM will assign the default 16 GB. The maximum allowed memory per node is 128 GB. To see how much RAM per node your job is using, you can run commands&nbsp;</span><tt>sacct</tt><span>&nbsp;or&nbsp;</span><tt>sstat</tt><span>&nbsp;to query MaxRSS for the job on the node - see examples below.</span><br /><span>Depending on a type of application you need to run, the submit script may contain commands to create a temporary space on a computational node -&nbsp;</span><a href="http://ecs.rutgers.edu/file_systems.html">see the discussion about using the file systems on the cluster.</a><span></span><br /><span>Then it sets the environment specific to the application and starts the application on one or multiple nodes - see sbatch sample scripts in directory&nbsp;</span><tt>/usr/local/Samples</tt><span>&nbsp;on soemaster1.hpc.rutgers.edu.</span><br /><span>You can submit your job to the cluster with&nbsp;</span><tt>sbatch</tt><span>&nbsp;command:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sbatch myscript.sh
</pre>
</td>
</tr>
</tbody>
</table></div><p><br /><span style="font-size: large;"><strong>3. Query job information</strong></span><span></span><br /><span>List all currently submitted jobs in running and pending states for a user:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>squeue -u &lt;username&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>Command&nbsp;</span><tt>squeue</tt><span>&nbsp;can be run with format options to expose specific information, for example, when pending job #706 is scheduled to start running:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>squeue -j 706 --format="%S"
</pre>
</td>
</tr>
</tbody>
</table></div><div><table border="1">
<tbody>
<tr>
<td>
<pre>START_TIME
2015-04-30T09:54:32
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>More info can be shown by placing additional format options, for example:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>squeue -j 706 --format="%i %P %j %u %T %l %C %S"
</pre>
</td>
</tr>
</tbody>
</table></div><div><table border="1">
<tbody>
<tr>
<td>
<pre>JOBID PARTITION   NAME    USER STATE   TIMELIMIT  CPUS START_TIME
706   SOE_main  Par_job_3 mike PENDING 3-00:00:00 64   2015-04-30T09:54:32
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To see when all the jobs, pending in the queue, are scheduled to start:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>squeue --start 
</pre>
</td>
</tr>
</tbody>
</table></div><p><br /><span>List all running and completed jobs for a user</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sqlog -u &lt;username&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>or</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sqlog -j &lt;JobID&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>The following appreviations are used for the job states:</span></p><pre>       CA   CANCELLED      Job was cancelled.

       CD   COMPLETED      Job completed normally.

       CG   COMPLETING     Job is in the process of completing.

       F    FAILED         Job termined abnormally.

       NF   NODE_FAIL      Job terminated due to node failure.

       PD   PENDING        Job is pending allocation.

       R    RUNNING        Job currently has an allocation.

       S    SUSPENDED      Job is suspended.

       TO   TIMEOUT        Job terminated upon reaching its time limit.
</pre><p><span>You can specify the fields you would like to see in the output of&nbsp;</span><tt>sqlog</tt><span>:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sqlog --format=list
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>The command below, for example, provides Job ID, user name, exit state, start date-time, and end date-time for job #2831:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sqlog -j 2831 --format=jid,user,state,start,end
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>List status info for a currently running job:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sstat -j &lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>A formatted output can be used to gain only a specific info, for example, the maximum resident RAM usage on a node:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sstat --format="JobID,MaxRSS" -j &lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To get statistics on completed jobs by jobID:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sacct --format="JobID,JobName,MaxRSS,Elapsed" -j &lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To view the same information for all jobs of a user:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sacct --format="JobID,JobName,MaxRSS,Elapsed" -u &lt;username&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To print a list of fields that can be specified with the&nbsp;</span><tt>--format</tt><span>&nbsp;option:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sacct --helpformat
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>For example, to get Job ID, Job name, Exit state, start date-time, and end date-time for job #2831:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sacct -j 2831 --format="JobID,JobName,State,Start,End"
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>Another useful command to gain information about a running job is&nbsp;</span><tt>scontrol</tt><span>:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scontrol show job=&lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><br /><span style="font-size: large;"><strong>4. Cancel a job</strong></span><span></span><br /><span>To cancel one job:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scancel &lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To cancel one job and delete the TMP directory created by the submit script on a node:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>sdel &lt;jobid&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To cancel all the jobs for a user:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scancel -u &lt;username&gt;
</pre>
</td>
</tr>
</tbody>
</table></div><p><span>To cancel one or more jobs by name:</span></p><div><table border="0" style="background-color: #D0D0D0;">
<tbody>
<tr>
<td>
<pre>scancel --name &lt;myJobName&gt;
</pre>
</td>
</tr>
</tbody>
</table></div>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/40868/inrae-organises-open-competitions-to-recruit-research-scientists-on-permanent-positions</guid>
  <pubDate>Sun, 02 Feb 2020 23:08:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[INRAE organises open competitions to recruit research scientists on permanent positions.]]></title>
  <description><![CDATA[
<p>Each year, INRAE organises open competitions to recruit research scientists on permanent positions. The recruitment campaign is generally aimed at researchers who have recently obtained their PhD. Candidates are recruited on the basis of their scientific competence which they will put to the service of INRAE's major research axes by responding to a research topic. Candidates must have published articles on the results of their PhD.</p>

<p>Campaign calendar:</p>

<p>- Opening date for applications: January 30, 2020<br />- Deadline for applications: March 5, 2020<br />- Pre-selections: April-May 2020<br />- Final selections: May-June 2020<br />- Starting date for appointments: from September 2020</p>

<p>More at https://jobs.inrae.fr/en/open-competitions/open-competions-research-scientists-crcn</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/43768/summer-school-open-to-phd-students</guid>
  <pubDate>Wed, 02 Feb 2022 06:08:35 -0600</pubDate>
  <link></link>
  <title><![CDATA[Summer school open to PhD students]]></title>
  <description><![CDATA[
<p>Some PhD students are organizing a summer school open to PhD students with different backgrounds and interests.</p>

<p>Several sessions and workshops will be held within five focus groups, and one common theme: mountain research.</p>

<p>The summer school will take place in Obergurgl, in the middle of the Austrian Alps, September 5-9.</p>

<p>Abstract submission is now open, until February 16th: https://www.imc2022.info/summerschool/</p>

<p>The summer school takes place in the context of the International Mountain Conference 2022, Innsbruck, Austria: https://www.imc2022.info/</p>

<p>Please feel free to spread the word among potentially interested colleagues and PhD students.</p>

<p>"Capponi, Lisa"</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</guid>
	<pubDate>Wed, 20 Jun 2018 11:22:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</link>
	<title><![CDATA[Install ImageMagick from Unix Source]]></title>
	<description><![CDATA[<p>ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download&nbsp;<a href="https://www.imagemagick.org/download/ImageMagick.tar.gz">ImageMagick.tar.gz</a>from&nbsp;<a href="https://www.imagemagick.org/download">www.imagemagick.org</a>&nbsp;or a&nbsp;<a href="https://www.imagemagick.org/script/mirror.php">mirrors</a>&nbsp;and verify its&nbsp;<a href="https://www.imagemagick.org/download/digest.rdf">message digest</a>.</p><p>Unpack the distribution with this command:</p><pre><code>tar xvzf ImageMagick.tar.gz
</code></pre><p>Next configure and compile ImageMagick. Note the&nbsp;<a href="https://en.wikipedia.org/wiki/Pkg-config">pkg-config</a>&nbsp;script is required so that ImageMagick can find certain optional delegate libraries on your system. To configure, type:</p><pre><span>$ </span><span>cd ImageMagick-7.0.8</span><span><br /></span><span>$ </span><span>./configure</span><span><br /></span><span>$ </span><span>make</span></pre><p>If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type</p><pre><code>sudo make install
</code></pre><p>You may need to configure the dynamic linker run-time bindings:</p><pre><code>sudo ldconfig /usr/local/lib
</code></pre><p>Finally, verify the ImageMagick install worked properly, type</p><pre><code>/usr/local/bin/convert logo: logo.gif
</code></pre><p>For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.</p><pre><code>make check
</code></pre><p>Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to&nbsp;<a href="https://www.imagemagick.org/Usage/">convert, compose, or edit</a>&nbsp;your images or perhaps you'll want to use one of the&nbsp;<a href="https://www.imagemagick.org/script/develop.php">Application Program Interfaces</a>&nbsp;for C, C++, Perl, and others.</p><p>The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you don't have administrator privileges and what if you don't want to install ImageMagick in the default&nbsp;<code>/../usr/local</code>&nbsp;folder? You will find the answer to these questions, and more, in&nbsp;<a href="https://www.imagemagick.org/script/advanced-unix-installation.php">Advanced Unix Source Installation</a>.</p><blockquote><p>jitendra@jitendra-UNLOCK-INSTALL[Downloads] git clone https://github.com/ImageMagick/ImageMagick.git []<br />Cloning into 'ImageMagick'...<br />remote: Counting objects: 124593, done.<br />remote: Compressing objects: 100% (77/77), done.<br />remote: Total 124593 (delta 94), reused 94 (delta 64), pack-reused 124452<br />Receiving objects: 100% (124593/124593), 76.94 MiB | 24.07 MiB/s, done.<br />Resolving deltas: 100% (106498/106498), done.<br />Checking connectivity... done.<br />jitendra@jitendra-UNLOCK-INSTALL[Downloads] cd ImageMagick []<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] make []<br />make: *** No targets specified and no makefile found. Stop.<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] ./configure []<br />checking build system type... x86_64-pc-linux-gnu<br />checking host system type... x86_64-pc-linux-gnu<br />checking target system type... x86_64-pc-linux-gnu<br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking whether build environment is sane... yes<br />checking for a thread-safe mkdir -p... /bin/mkdir -p<br />checking for gawk... gawk<br />checking whether make sets $(MAKE)... yes<br />checking whether make supports nested variables... yes<br />checking whether UID '1000' is supported by ustar format... yes<br />checking whether GID '1000' is supported by ustar format... yes<br />checking how to create a ustar tar archive... gnutar<br />checking whether make supports nested variables... (cached) yes<br />configuring ImageMagick 7.0.8-3<br />checking whether build environment is sane... yes<br />checking for style of include used by make... GNU<br />checking for gcc... gcc<br />checking whether the C compiler works... yes<br />checking for C compiler default output file name... a.out<br />checking for suffix of executables... <br />checking whether we are cross compiling... no<br />checking for suffix of object files... o<br />checking whether we are using the GNU C compiler... yes<br />checking whether gcc accepts -g... yes<br />checking for gcc option to accept ISO C89... none needed<br />checking whether gcc understands -c and -o together... yes<br />checking dependency style of gcc... gcc3<br />checking how to run the C preprocessor... gcc -E<br />checking for grep that handles long lines and -e... /bin/grep<br />checking for egrep... /bin/grep -E<br />checking for ANSI C header files... yes<br />checking for sys/types.h... yes<br />checking for sys/stat.h... yes<br />checking for stdlib.h... yes<br />checking for string.h... yes<br />checking for memory.h... yes<br />checking for strings.h... yes<br />checking for inttypes.h... yes<br />checking for stdint.h... yes<br />checking for unistd.h... yes<br />checking minix/config.h usability... no<br />checking minix/config.h presence... no<br />checking for minix/config.h... no<br />checking whether it is safe to define __EXTENSIONS__... yes<br />checking for ar... ar<br />checking the archiver (ar) interface... ar<br />checking for gcc... (cached) gcc<br />checking whether we are using the GNU C compiler... (cached) yes<br />checking whether gcc accepts -g... (cached) yes<br />checking for gcc option to accept ISO C89... (cached) none needed<br />checking whether gcc understands -c and -o together... (cached) yes<br />checking dependency style of gcc... (cached) gcc3<br />checking for g++... g++<br />checking whether we are using the GNU C++ compiler... yes<br />checking whether g++ accepts -g... yes<br />checking dependency style of g++... gcc3<br />checking for gcc option to accept ISO C99... none needed<br />checking for gcc option to accept ISO Standard C... (cached) none needed<br />checking how to run the C preprocessor... gcc -E<br />checking for a sed that does not truncate output... /bin/sed<br />checking for fgrep... /bin/grep -F<br />checking how to print strings... printf<br />checking for ld used by gcc... /usr/bin/ld<br />checking if the linker (/usr/bin/ld) is GNU ld... yes<br />checking for gcc option to accept ISO C99... (cached) none needed<br />checking CFLAGS for maximum warnings... -Wall<br />checking whether make sets $(MAKE)... (cached) yes<br />checking whether ln -s works... yes<br />checking for a sed that does not truncate output... (cached) /bin/sed<br />checking for gawk... (cached) gawk<br />checking if malloc debugging is wanted... no<br />checking for __attribute__... yes<br />checking for C compiler vendor... gnu<br />checking for gcc architecture flag... <br />checking for x86 cpuid 0 output... d:756e6547:6c65746e:49656e69<br />checking for x86 cpuid 1 output... 306a9:3100800:7fbae3ff:bfebfbff<br />checking whether C compiler accepts -mtune=ivybridge... yes<br />checking for gcc architecture flag... -mtune=ivybridge<br />checking for pkg-config... /usr/bin/pkg-config<br />checking pkg-config is at least version 0.20... yes<br />checking size of size_t... 8<br />checking for C compiler vendor... (cached) gnu<br />./configure: line 9486: AX_COMPILER_FLAGS: command not found<br />checking CFLAGS for maximum warnings... (cached) -Wall<br />checking if LD -Wl,--version-script works... yes<br />checking for linker lazyload option... none<br />checking whether gcc is Clang... no<br />checking whether pthreads work with -pthread... yes<br />checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... no<br />checking for PTHREAD_PRIO_INHERIT... yes<br />checking for gcc option to support OpenMP... -fopenmp<br />checking for pthread_join using gcc -pthread ... yes<br />checking whether gcc is Clang... (cached) no<br />checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... (cached) no<br />checking for PTHREAD_PRIO_INHERIT... (cached) yes<br />checking whether we are using the Microsoft C compiler... no<br />checking CL/cl.h usability... no<br />checking CL/cl.h presence... no<br />checking for CL/cl.h... no<br />checking OpenCL/cl.h usability... no<br />checking OpenCL/cl.h presence... no<br />checking for OpenCL/cl.h... no<br />checking windows.h usability... no<br />checking windows.h presence... no<br />checking for windows.h... no<br />checking for OpenCL library... no<br />checking for special C compiler options needed for large files... no<br />checking for _FILE_OFFSET_BITS value needed for large files... no<br />checking for _LARGEFILE_SOURCE value needed for large files... no<br />checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B<br />checking the name lister (/usr/bin/nm -B) interface... BSD nm<br />checking the maximum length of command line arguments... 1572864<br />checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop<br />checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop<br />checking for /usr/bin/ld option to reload object files... -r<br />checking for objdump... objdump<br />checking how to recognize dependent libraries... pass_all<br />checking for dlltool... no<br />checking how to associate runtime and link libraries... printf %s\n<br />checking for archiver @FILE support... @<br />checking for strip... strip<br />checking for ranlib... ranlib<br />checking command to parse /usr/bin/nm -B output from gcc object... ok<br />checking for sysroot... no<br />checking for a working dd... /bin/dd<br />checking how to truncate binary pipes... /bin/dd bs=4096 count=1<br />checking for mt... mt<br />checking if mt is a manifest tool... no<br />checking for dlfcn.h... yes<br />checking for objdir... .libs<br />checking if gcc supports -fno-rtti -fno-exceptions... no<br />checking for gcc option to produce PIC... -fPIC -DPIC<br />checking if gcc PIC flag -fPIC -DPIC works... yes<br />checking if gcc static flag -static works... yes<br />checking if gcc supports -c -o file.o... yes<br />checking if gcc supports -c -o file.o... (cached) yes<br />checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking whether -lc should be explicitly linked in... no<br />checking dynamic linker characteristics... GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking for shl_load... no<br />checking for shl_load in -ldld... no<br />checking for dlopen... no<br />checking for dlopen in -ldl... yes<br />checking whether a program can dlopen itself... yes<br />checking whether a statically linked program can dlopen itself... no<br />checking whether stripping libraries is possible... yes<br />checking if libtool supports shared libraries... yes<br />checking whether to build shared libraries... yes<br />checking whether to build static libraries... yes<br />checking how to run the C++ preprocessor... g++ -E<br />checking for ld used by g++... /usr/bin/ld -m elf_x86_64<br />checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking for g++ option to produce PIC... -fPIC -DPIC<br />checking if g++ PIC flag -fPIC -DPIC works... yes<br />checking if g++ static flag -static works... yes<br />checking if g++ supports -c -o file.o... yes<br />checking if g++ supports -c -o file.o... (cached) yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking dynamic linker characteristics... (cached) GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking whether to enable maintainer-specific portions of Makefiles... no<br />checking whether gcc needs -traditional... no<br />checking for ANSI C header files... (cached) yes<br />checking whether to enable assertions... yes<br />checking for dirent.h that defines DIR... yes<br />checking for library containing opendir... none required<br />checking arm/limits.h usability... no<br />checking arm/limits.h presence... no<br />checking for arm/limits.h... no<br />checking arpa/inet.h usability... yes<br />checking arpa/inet.h presence... yes<br />checking for arpa/inet.h... yes<br />checking complex.h usability... yes<br />checking complex.h presence... yes<br />checking for complex.h... yes<br />checking errno.h usability... yes<br />checking errno.h presence... yes<br />checking for errno.h... yes<br />checking fcntl.h usability... yes<br />checking fcntl.h presence... yes<br />checking for fcntl.h... yes<br />checking limits.h usability... yes<br />checking limits.h presence... yes<br />checking for limits.h... yes<br />checking linux/unistd.h usability... yes<br />checking linux/unistd.h presence... yes<br />checking for linux/unistd.h... yes<br />checking locale.h usability... yes<br />checking locale.h presence... yes<br />checking for locale.h... yes<br />checking machine/param.h usability... no<br />checking machine/param.h presence... no<br />checking for machine/param.h... no<br />checking mach-o/dyld.h usability... no<br />checking mach-o/dyld.h presence... no<br />checking for mach-o/dyld.h... no<br />checking netinet/in.h usability... yes<br />checking netinet/in.h presence... yes<br />checking for netinet/in.h... yes<br />checking OS.h usability... no<br />checking OS.h presence... no<br />checking for OS.h... no<br />checking process.h usability... no<br />checking process.h presence... no<br />checking for process.h... no<br />checking sun_prefetch.h usability... no<br />checking sun_prefetch.h presence... no<br />checking for sun_prefetch.h... no<br />checking stdarg.h usability... yes<br />checking stdarg.h presence... yes<br />checking for stdarg.h... yes<br />checking sys/ipc.h usability... yes<br />checking sys/ipc.h presence... yes<br />checking for sys/ipc.h... yes<br />checking sys/mman.h usability... yes<br />checking sys/mman.h presence... yes<br />checking for sys/mman.h... yes<br />checking sys/resource.h usability... yes<br />checking sys/resource.h presence... yes<br />checking for sys/resource.h... yes<br />checking sys/sendfile.h usability... yes<br />checking sys/sendfile.h presence... yes<br />checking for sys/sendfile.h... yes<br />checking sys/socket.h usability... yes<br />checking sys/socket.h presence... yes<br />checking for sys/socket.h... yes<br />checking sys/syslimits.h usability... no<br />checking sys/syslimits.h presence... no<br />checking for sys/syslimits.h... no<br />checking sys/time.h usability... yes<br />checking sys/time.h presence... yes<br />checking for sys/time.h... yes<br />checking sys/timeb.h usability... yes<br />checking sys/timeb.h presence... yes<br />checking for sys/timeb.h... yes<br />checking sys/times.h usability... yes<br />checking sys/times.h presence... yes<br />checking for sys/times.h... yes<br />checking sys/wait.h usability... yes<br />checking sys/wait.h presence... yes<br />checking for sys/wait.h... yes<br />checking utime.h usability... yes<br />checking utime.h presence... yes<br />checking for utime.h... yes<br />checking wchar.h usability... yes<br />checking wchar.h presence... yes<br />checking for wchar.h... yes<br />checking xlocale.h usability... yes<br />checking xlocale.h presence... yes<br />checking for xlocale.h... yes<br />checking for stdbool.h that conforms to C99... yes<br />checking for _Bool... yes<br />checking for working volatile... yes<br />checking for preprocessor stringizing operator... yes<br />checking whether stat file-mode macros are broken... no<br />checking whether time.h and sys/time.h may both be included... yes<br />checking whether struct tm is in sys/time.h or time.h... time.h<br />checking for struct tm.tm_zone... yes<br />checking whether #! works in shell scripts... yes<br />checking whether char is unsigned... no<br />checking for an ANSI C-conforming const... yes<br />checking for inline... inline<br />checking for C/C++ restrict keyword... __restrict<br />checking for working volatile... (cached) yes<br />checking whether byte ordering is bigendian... no<br />checking for int8_t... yes<br />checking for int16_t... yes<br />checking for int32_t... yes<br />checking for int64_t... yes<br />checking for unsigned long long int... yes<br />checking for long long int... yes<br />checking for intmax_t... yes<br />checking for intptr_t... yes<br />checking for long double... yes<br />checking for long double with more range or precision than double... yes<br />checking for long long int... (cached) yes<br />checking for mbstate_t... yes<br />checking for mode_t... yes<br />checking for off_t... yes<br />checking for pid_t... yes<br />checking for size_t... yes<br />checking for ssize_t... yes<br />checking for uid_t in sys/types.h... yes<br />checking for uint8_t... yes<br />checking for uint16_t... yes<br />checking for uint32_t... yes<br />checking for uint64_t... yes<br />checking for uintmax_t... yes<br />checking for uintptr_t... yes<br />checking for unsigned long long int... (cached) yes<br />checking for locale_t... yes<br />checking for float_t... yes<br />checking for double_t... yes<br />checking size of float_t... 4<br />checking size of double_t... 8<br />checking size of float... 4<br />checking size of double... 8<br />checking size of long double... 16<br />checking size of signed short... 2<br />checking size of unsigned short... 2<br />checking size of signed int... 4<br />checking size of unsigned int... 4<br />checking size of signed long... 8<br />checking size of unsigned long... 8<br />checking size of signed long long... 8<br />checking size of unsigned long long... 8<br />checking size of off_t... 8<br />checking size of size_t... (cached) 8<br />checking size of ssize_t... 8<br />checking size of unsigned int*... 8<br />checking for signed 8-bit type... signed char<br />checking for unsigned 8-bit type... unsigned char<br />checking for signed 16-bit type... signed short<br />checking for unsigned 16-bit type... unsigned short<br />checking for signed 32-bit type... signed int<br />checking for unsigned 32-bit type... unsigned int<br />checking for signed 64-bit type... signed long<br />checking for unsigned 64-bit type... unsigned long<br />checking for unsigned maximum type... unsigned long<br />checking for pointer difference type... unsigned long<br />checking whether our compiler supports __func__... yes<br />checking whether closedir returns void... no<br />checking for stdlib.h... (cached) yes<br />checking for unistd.h... (cached) yes<br />checking for sys/param.h... yes<br />checking for getpagesize... yes<br />checking for working mmap... yes<br />checking vfork.h usability... no<br />checking vfork.h presence... no<br />checking for vfork.h... no<br />checking for fork... yes<br />checking for vfork... yes<br />checking for working fork... yes<br />checking for working vfork... (cached) yes<br />checking for working memcmp... yes<br />checking sys/select.h usability... yes<br />checking sys/select.h presence... yes<br />checking for sys/select.h... yes<br />checking for sys/socket.h... (cached) yes<br />checking types of arguments for select... int,fd_set *,struct timeval *<br />checking return type of signal handlers... void<br />checking for working strtod... yes<br />checking whether strerror_r is declared... yes<br />checking for strerror_r... yes<br />checking whether strerror_r returns char *... yes<br />checking for vprintf... yes<br />checking for _doprnt... no<br />checking for sqrt in -lm... yes<br />checking for library containing gethostbyname... none required<br />checking for library containing socket... none required<br />checking for acosh... yes<br />checking for _aligned_malloc... no<br />checking for asinh... yes<br />checking for atanh... yes<br />checking for atoll... yes<br />checking for atexit... yes<br />checking for cabs... yes<br />checking for carg... yes<br />checking for cimag... yes<br />checking for creal... yes<br />checking for clock... yes<br />checking for clock_getres... yes<br />checking for clock_gettime... yes<br />checking for ctime_r... yes<br />checking for directio... no<br />checking for erf... yes<br />checking for _exit... yes<br />checking for execvp... yes<br />checking for fchmod... yes<br />checking for floor... yes<br />checking for fork... (cached) yes<br />checking for ftime... yes<br />checking for ftruncate... yes<br />checking for getc_unlocked... yes<br />checking for getcwd... yes<br />checking for getpid... yes<br />checking for getexecname... no<br />checking for getdtablesize... yes<br />checking for getpagesize... (cached) yes<br />checking for getrlimit... yes<br />checking for getrusage... yes<br />checking for gettimeofday... yes<br />checking for gmtime_r... yes<br />checking for isnan... yes<br />checking for j0... yes<br />checking for j1... yes<br />checking for lltostr... no<br />checking for localtime_r... yes<br />checking for lstat... yes<br />checking for memmove... yes<br />checking for memset... yes<br />checking for mkstemp... yes<br />checking for munmap... yes<br />checking for nanosleep... yes<br />checking for newlocale... yes<br />checking for _NSGetExecutablePath... no<br />checking for pclose... yes<br />checking for _pclose... no<br />checking for poll... yes<br />checking for popen... yes<br />checking for _popen... no<br />checking for posix_fadvise... yes<br />checking for posix_fallocate... yes<br />checking for posix_madvise... yes<br />checking for posix_memalign... yes<br />checking for posix_spawnp... yes<br />checking for pow... yes<br />checking for pread... yes<br />checking for pwrite... yes<br />checking for qsort_r... yes<br />checking for raise... yes<br />checking for rand_r... yes<br />checking for readlink... yes<br />checking for realpath... yes<br />checking for select... yes<br />checking for seekdir... yes<br />checking for sendfile... yes<br />checking for setlocale... yes<br />checking for socket... yes<br />checking for sqrt... yes<br />checking for setvbuf... yes<br />checking for stat... yes<br />checking for strchr... yes<br />checking for strrchr... yes<br />checking for strcspn... yes<br />checking for strdup... yes<br />checking for strpbrk... yes<br />checking for strspn... yes<br />checking for strstr... yes<br />checking for strtod... (cached) yes<br />checking for strtod_l... yes<br />checking for strtol... yes<br />checking for strtoul... yes<br />checking for symlink... yes<br />checking for sysconf... yes<br />checking for sigemptyset... yes<br />checking for sigaction... yes<br />checking for spawnvp... no<br />checking for strerror... yes<br />checking for strlcat... no<br />checking for strlcpy... no<br />checking for strcasecmp... yes<br />checking for strncasecmp... yes<br />checking for telldir... yes<br />checking for tempnam... yes<br />checking for times... yes<br />checking for ulltostr... no<br />checking for uselocale... yes<br />checking for usleep... yes<br />checking for utime... yes<br />checking for vfprintf... yes<br />checking for vfprintf_l... no<br />checking for vsprintf... yes<br />checking for vsnprintf... yes<br />checking for vsnprintf_l... no<br />checking for waitpid... yes<br />checking for _wfopen... no<br />checking for _wstat... no<br />checking for library containing clock_gettime... none required<br />checking whether clock_gettime supports CLOCK_REALTIME... yes<br />checking whether pread is declared... yes<br />checking whether pwrite is declared... yes<br />checking whether strlcpy is declared... no<br />checking whether vsnprintf is declared... yes<br />checking whether we are using the GNU C++ compiler... (cached) yes<br />checking whether g++ accepts -g... (cached) yes<br />checking dependency style of g++... (cached) gcc3<br />checking whether the compiler recognizes bool as a built-in type... yes<br />checking whether the compiler implements namespaces... yes<br />checking if g++ supports namespace std... yes<br />checking whether the compiler supports ISO C++ standard library... yes<br />checking for g++ option to support OpenMP... -fopenmp<br />checking whether C++ compiler is sufficient for Magick++... yes<br />checking for X11 configure files... <br />checking for GOMP_parallel_start in -lgomp... yes<br />-------------------------------------------------------------<br />checking for BZLIB... <br />checking bzlib.h usability... no<br />checking bzlib.h presence... no<br />checking for bzlib.h... no<br />checking for BZ2_bzDecompress in -lbz2... no<br />checking if BZLIB package is complete... no<br />checking for X... libraries , headers <br />checking for gethostbyname... yes<br />checking for connect... yes<br />checking for remove... yes<br />checking for shmat... yes<br />checking for IceConnectionNumber in -lICE... yes<br />-------------------------------------------------------------<br />checking for X11... <br />checking for shmctl... yes<br />checking for XShmAttach in -lXext... yes<br />checking for XShapeCombineMask in -lXext... yes<br />checking for XtSetEventDispatcher in -lXt... yes<br />-------------------------------------------------------------<br />checking for ZLIB... yes</p><p>-------------------------------------------------------------<br />checking for DPS... <br />checking DPS/dpsXclient.h usability... no<br />checking DPS/dpsXclient.h presence... no<br />checking for DPS/dpsXclient.h... no<br />checking for DPSInitialize in -ldps... no<br />checking for DPSInitialize in -ldps... no<br />checking for XDPSPixelsPerPoint in -ldpstk... no<br />checking if DPS package is complete... no<br />-------------------------------------------------------------<br />checking for fftw3... no</p><p>-------------------------------------------------------------<br />checking for FLIF... <br />checking flif.h usability... no<br />checking flif.h presence... no<br />checking for flif.h... no<br />checking for flif_create_decoder in -lflif... no<br />checking if FLIF package is complete... no<br />-------------------------------------------------------------<br />checking for FlashPIX... <br />checking fpxlib.h usability... no<br />checking fpxlib.h presence... no<br />checking for fpxlib.h... no<br />checking for FPX_OpenImageByFilename in -lfpx... no<br />checking if FlashPIX package is complete... no<br />-------------------------------------------------------------<br />checking for ddjvuapi... no</p><p>-------------------------------------------------------------<br />checking for FONTCONFIG... yes</p><p>-------------------------------------------------------------<br />checking for FREETYPE... yes</p><p>-------------------------------------------------------------<br />checking for RAQM... no</p><p>-------------------------------------------------------------<br />checking for GVC... no</p><p>-------------------------------------------------------------<br />checking for HEIF... no</p><p>-------------------------------------------------------------<br />checking for JBIG... <br />checking jbig.h usability... yes<br />checking jbig.h presence... yes<br />checking for jbig.h... yes<br />checking for jbg_dec_init in -ljbig... yes<br />checking if JBIG package is complete... yes<br />-------------------------------------------------------------<br />checking for JPEG... <br />checking jconfig.h usability... yes<br />checking jconfig.h presence... yes<br />checking for jconfig.h... yes<br />checking jerror.h usability... yes<br />checking jerror.h presence... yes<br />checking for jerror.h... yes<br />checking jmorecfg.h usability... yes<br />checking jmorecfg.h presence... yes<br />checking for jmorecfg.h... yes<br />checking jpeglib.h usability... yes<br />checking jpeglib.h presence... yes<br />checking for jpeglib.h... yes<br />checking for jpeg_read_header in -ljpeg... yes<br />checking for JPEG library is version 6b or later... yes<br />checking if JPEG package is complete... yes<br />-------------------------------------------------------------<br />checking for LCMS2... no</p><p>-------------------------------------------------------------<br />checking for LIBOPENJP2... no</p><p>-------------------------------------------------------------<br />checking for LQR... no</p><p>-------------------------------------------------------------<br />checking for LZMA... yes</p><p>-------------------------------------------------------------<br />checking for OPENEXR... no</p><p>-------------------------------------------------------------<br />checking for PANGO... yes</p><p>checking for PANGO... yes</p><p>-------------------------------------------------------------<br />checking for PNG... yes</p><p>-------------------------------------------------------------<br />checking for RAW_R... no</p><p>-------------------------------------------------------------<br />checking for TIFF... <br />checking tiff.h usability... yes<br />checking tiff.h presence... yes<br />checking for tiff.h... yes<br />checking tiffio.h usability... yes<br />checking tiffio.h presence... yes<br />checking for tiffio.h... yes<br />checking for TIFFOpen in -ltiff... yes<br />checking for TIFFClientOpen in -ltiff... yes<br />checking for TIFFIsByteSwapped in -ltiff... yes<br />checking for TIFFReadRGBATile in -ltiff... yes<br />checking for TIFFReadRGBAStrip in -ltiff... yes<br />checking if TIFF package is complete... yes<br />checking tiffconf.h usability... yes<br />checking tiffconf.h presence... yes<br />checking for tiffconf.h... yes<br />checking for TIFFIsCODECConfigured... yes<br />checking for TIFFMergeFieldInfo... yes<br />checking for TIFFIsBigEndian... yes<br />checking for TIFFReadEXIFDirectory... yes<br />checking for TIFFSetErrorHandlerExt... yes<br />checking for TIFFSetTagExtender... yes<br />checking for TIFFSetWarningHandlerExt... yes<br />checking for TIFFSwabArrayOfTriples... yes<br />-------------------------------------------------------------<br />checking for WEBP... no<br />checking for WEBPMUX... no</p><p>checking for WMF support ... <br />checking for libwmf/ipa.h... no<br />checking if WMF package is complete ... no<br />-------------------------------------------------------------<br />checking for XML... yes</p><p>-------------------------------------------------------------<br />checking for ImageMagick delegate programs... <br />checking for bpgdec... bpgdec<br />checking for bpgenc... bpgenc<br />checking for blender... blender<br />checking for xdg-open... /usr/bin/xdg-open<br />checking for ufraw-batch... ufraw-batch<br />checking for soffice... /usr/bin/soffice<br />checking for dvips... /usr/bin/dvips<br />checking for magick... magick<br />checking for magick... magick<br />checking for xterm... /usr/bin/xterm<br />checking for dot... /usr/bin/dot<br />checking for hp2xx... hp2xx<br />checking for html2ps... html2ps<br />checking for ilbmtoppm... /usr/bin/ilbmtoppm<br />checking for ppmtoilbm... /usr/bin/ppmtoilbm<br />checking for JxrDecApp... JxrDecApp<br />checking for JxrEncApp... JxrEncApp<br />checking for lepton... lepton<br />checking for lp... /usr/bin/lp<br />checking for lpr... /usr/bin/lpr<br />checking for gimp... /usr/bin/gimp<br />checking for magick... magick<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for mrsidgeodecode... mrsidgeodecode<br />checking for mv... /bin/mv<br />checking for pcl6... pcl6<br />checking for gsx... no<br />checking for gsc... no<br />checking for gs... /usr/bin/gs<br />checking for rm... /bin/rm<br />checking for rsvg-convert... rsvg-convert<br />checking for inkscape... inkscape<br />checking for uniconvertor... uniconvertor<br />checking for dwebp... dwebp<br />checking for cwebp... cwebp<br />checking for curl... /usr/bin/curl<br />checking for gxps... gxps<br />checking for Apple fonts directory... not found!<br />checking for Dejavu fonts directory... not found!<br />checking for Ghostscript fonts directory... /usr/share/fonts/type1/gsfonts/<br />checking for URW-base35 fonts directory... not found!<br />checking for Windows fonts directory... not found!<br />checking for gnutar... no<br />checking for gtar... no<br />checking for tar... tar<br />checking for perl... perl<br />checking for rpmbuild... no<br />checking for rpm... no<br />checking for 7za... 7za<br />checking for zip... zip<br />-------------------------------------------------------------<br />checking for Ghostscript... <br />checking for Ghostscript version... 9.18<br />checking for gs color device... pnmraw<br />checking for gs alpha device... pngalpha<br />checking for gs CMYK device... pamcmyk32<br />checking for gs mono device... pbmraw<br />checking for gs PDF writing device... pdfwrite<br />checking for gs PS writing device... ps2write<br />checking for gs EPS writing device... eps2write<br />-------------------------------------------------------------<br />Update ImageMagick configuration<br />checking that generated files are newer than configure... done<br />checking that generated files are newer than configure... done<br />configure: creating ./config.status<br />config.status: creating common.shi<br />config.status: creating config/configure.xml<br />config.status: creating config/delegates.xml<br />config.status: creating config/ImageMagick.rdf<br />config.status: creating config/MagickCore.dox<br />config.status: creating config/MagickWand.dox<br />config.status: creating config/Magick++.dox<br />config.status: creating config/type-apple.xml<br />config.status: creating config/type-dejavu.xml<br />config.status: creating config/type-ghostscript.xml<br />config.status: creating config/type-urw-base35.xml<br />config.status: creating config/type-windows.xml<br />config.status: creating config/type.xml<br />config.status: creating ImageMagick.spec<br />config.status: creating Magick++/bin/Magick++-config<br />config.status: creating MagickCore/ImageMagick.pc<br />config.status: creating Magick++/lib/Magick++.pc<br />config.status: creating MagickCore/MagickCore-config<br />config.status: creating MagickCore/MagickCore.pc<br />config.status: creating MagickCore/version.h<br />config.status: creating Makefile<br />config.status: creating magick.sh<br />config.status: creating PerlMagick/check.sh<br />config.status: creating PerlMagick/default/Magick.pm<br />config.status: creating PerlMagick/Makefile.PL<br />config.status: creating PerlMagick/default/Makefile.PL<br />config.status: creating PerlMagick/quantum/Makefile.PL<br />config.status: creating PerlMagick/quantum/quantum.pm<br />config.status: creating PerlMagick/quantum/quantum.xs<br />config.status: creating PerlMagick/quantum/typemap<br />config.status: creating utilities/animate.1<br />config.status: creating utilities/compare.1<br />config.status: creating utilities/composite.1<br />config.status: creating utilities/conjure.1<br />config.status: creating utilities/convert.1<br />config.status: creating utilities/display.1<br />config.status: creating utilities/identify.1<br />config.status: creating utilities/ImageMagick.1<br />config.status: creating utilities/import.1<br />config.status: creating utilities/magick.1<br />config.status: creating utilities/magick-script.1<br />config.status: creating utilities/mogrify.1<br />config.status: creating utilities/montage.1<br />config.status: creating utilities/stream.1<br />config.status: creating MagickWand/MagickWand-config<br />config.status: creating MagickWand/MagickWand.pc<br />config.status: creating config/config.h<br />config.status: executing MagickCore/magick-baseconfig.h commands<br />config.status: creating MagickCore/magick-baseconfig.h - prefix MAGICKCORE for config/config.h defines<br />config.status: executing depfiles commands<br />config.status: executing libtool commands<br />config.status: executing default commands<br />config.status: executing magick.sh.in commands<br />config.status: executing MagickCore-config.in commands<br />config.status: executing MagickWand-config.in commands<br />config.status: executing Magick++-config.in commands<br />config.status: executing PerlMagick/check.sh.in commands<br />configure:<br />==============================================================================<br />ImageMagick is configured as follows. Please verify that this configuration<br />matches your expectations.</p><p>Host system type: x86_64-pc-linux-gnu<br /> Build system type: x86_64-pc-linux-gnu</p><p>Option Value<br /> ------------------------------------------------------------------------------<br /> Shared libraries --enable-shared=yes yes<br /> Static libraries --enable-static=yes yes<br /> Build utilities --with-utilities=yes yes</p><p>&nbsp;</p><p>/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />mkdir -p -- /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/annotated.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/classes.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dirs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/files.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2blank.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2doc.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderclosed.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderopen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2lastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2link.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mlastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2node.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2plastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2pnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2vertline.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x61.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x62.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x65.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6f.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x71.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x74.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x75.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x77.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x78.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_defs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_enum.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_eval.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_type.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/index.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/main.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__CompositeOptions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawingWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawVTable.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__MagickWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelIterator.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_b.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wandtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br /> /bin/mkdir -p '/usr/local/share/doc/ImageMagick-7'<br /> /usr/bin/install -c -m 644 LICENSE ChangeLog NEWS.txt '/usr/local/share/doc/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7/Magick++'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++/Blob.h Magick++/lib/Magick++/CoderInfo.h Magick++/lib/Magick++/Color.h Magick++/lib/Magick++/Drawable.h Magick++/lib/Magick++/Exception.h Magick++/lib/Magick++/Functions.h Magick++/lib/Magick++/Geometry.h Magick++/lib/Magick++/Image.h Magick++/lib/Magick++/Include.h Magick++/lib/Magick++/Montage.h Magick++/lib/Magick++/Pixels.h Magick++/lib/Magick++/ResourceLimits.h Magick++/lib/Magick++/SecurityPolicy.h Magick++/lib/Magick++/Statistic.h Magick++/lib/Magick++/STL.h Magick++/lib/Magick++/TypeMetric.h '/usr/local/include/ImageMagick-7/Magick++'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++.h '/usr/local/include/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/share/man/man1'<br /> /usr/bin/install -c -m 644 MagickCore/MagickCore-config.1 MagickWand/MagickWand-config.1 Magick++/bin/Magick++-config.1 utilities/ImageMagick.1 utilities/animate.1 utilities/compare.1 utilities/composite.1 utilities/conjure.1 utilities/convert.1 utilities/display.1 utilities/identify.1 utilities/import.1 utilities/magick.1 utilities/magick-script.1 utilities/mogrify.1 utilities/montage.1 utilities/stream.1 '/usr/local/share/man/man1'<br /> /bin/mkdir -p '/usr/local/lib/pkgconfig'<br /> /usr/bin/install -c -m 644 MagickCore/ImageMagick.pc MagickCore/MagickCore.pc MagickCore/ImageMagick-7.Q16HDRI.pc MagickCore/MagickCore-7.Q16HDRI.pc MagickWand/MagickWand.pc MagickWand/MagickWand-7.Q16HDRI.pc Magick++/lib/Magick++.pc Magick++/lib/Magick++-7.Q16HDRI.pc '/usr/local/lib/pkgconfig'<br />make[2]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />make[1]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] []</p></blockquote>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26252/recombination-detection-tool</guid>
	<pubDate>Tue, 02 Feb 2016 10:11:14 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26252/recombination-detection-tool</link>
	<title><![CDATA[Recombination detection tool]]></title>
	<description><![CDATA[<p>A program to detect recombination hotspots using population genetic data.</p>
<p>More at https://github.com/auton1/LDhot</p><p>Address of the bookmark: <a href="https://github.com/auton1/LDhot" rel="nofollow">https://github.com/auton1/LDhot</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/27099/rasttk-algorithm-for-building-custom-annotation-pipelines-and-annotating-batches-of-genomes</guid>
	<pubDate>Wed, 27 Apr 2016 11:07:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/27099/rasttk-algorithm-for-building-custom-annotation-pipelines-and-annotating-batches-of-genomes</link>
	<title><![CDATA[RASTtk : algorithm for building custom annotation pipelines and annotating batches of genomes]]></title>
	<description><![CDATA[<p>The RAST (Rapid Annotation using Subsystem Technology) annotation engine was built in 2008 to annotate bacterial and archaeal genomes. It works by offering a standard software pipeline for identifying genomic features (i.e., protein-encoding genes and RNA) and annotating their functions. Recently, in order to make RAST a more useful research tool and to keep pace with advancements in bioinformatics, it has become desirable to build a version of RAST that is both customizable and extensible. In this paper, we describe the RAST tool kit (RASTtk), a modular version of RAST that enables researchers to build custom annotation pipelines. RASTtk offers a choice of software for identifying and annotating genomic features as well as the ability to add custom features to an annotation job. RASTtk also accommodates the batch submission of genomes and the ability to customize annotation protocols for batch submissions. This is the first major software restructuring of RAST since its inception.</p>
<p>More at http://www.nature.com/articles/srep08365</p><p>Address of the bookmark: <a href="http://rast.nmpdr.org/" rel="nofollow">http://rast.nmpdr.org/</a></p>]]></description>
	<dc:creator>Abhi</dc:creator>
</item>

</channel>
</rss>