<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.anunna.wur.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Herre011</id>
	<title>HPCwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.anunna.wur.nl/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Herre011"/>
	<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php/Special:Contributions/Herre011"/>
	<updated>2026-04-18T06:42:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1597</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1597"/>
		<updated>2015-04-09T13:01:57Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Example of local commands to execute */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab@WUR: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
== Signing up ==&lt;br /&gt;
If you haven&#039;t done so already, install git in your local machine and sign up at GitLab@WUR:&lt;br /&gt;
  https://git.wageningenur.nl&lt;br /&gt;
&lt;br /&gt;
== Example of local commands to execute ==&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine, e.g.:&lt;br /&gt;
mkdir ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: &lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2: make private-public rsa key pair&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd ~/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# IMPORTANT: make sure you use the *public* key, not the private part of the key pair!&lt;br /&gt;
# The configuration is finished. &lt;br /&gt;
&lt;br /&gt;
## Create a project:&lt;br /&gt;
&lt;br /&gt;
# 1. Log in https://git.wageningenur.nl. Then create a project (name of the project should not have spaces or dash &#039;-&#039;). In the example, the project is called Turkey_Association&lt;br /&gt;
# 2. Go back to the terminal:&lt;br /&gt;
cd ~/Git_Stuff&lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cp myscript.sh ~/Git_Stuff/Turkey_Association&lt;br /&gt;
cd ~/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Remove a directory:&lt;br /&gt;
git rm -r one-of-the-directories&lt;br /&gt;
git commit -m &amp;quot;Remove duplicated directory&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git]&lt;br /&gt;
*[https://github.com GitHub, a public Git repository (not to be confused with GitLab@WUR, but uses the same Git versioning software)]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1596</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1596"/>
		<updated>2015-04-09T12:25:06Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Example of local commands to execute */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab@WUR: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
== Signing up ==&lt;br /&gt;
If you haven&#039;t done so already, install git in your local machine and sign up at GitLab@WUR:&lt;br /&gt;
  https://git.wageningenur.nl&lt;br /&gt;
&lt;br /&gt;
== Example of local commands to execute ==&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine, e.g.:&lt;br /&gt;
mkdir ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: &lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2: make private-public rsa key pair&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd ~/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# IMPORTANT: make sure you use the *public* key, not the private part of the key pair!&lt;br /&gt;
# The configuration is finished. &lt;br /&gt;
&lt;br /&gt;
## Create a project:&lt;br /&gt;
&lt;br /&gt;
# 1. Log in https://git.wageningenur.nl. Then create a project (name of the project should not have spaces or dash &#039;-&#039;). In the example, the project is called Turkey_Association&lt;br /&gt;
# 2. Go back to the terminal:&lt;br /&gt;
cd ~/Git_Stuff&lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cp myscript.sh ~/Git_Stuff/Turkey_Association&lt;br /&gt;
cd ~/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git]&lt;br /&gt;
*[https://github.com GitHub, a public Git repository (not to be confused with GitLab@WUR, but uses the same Git versioning software)]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1595</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1595"/>
		<updated>2015-04-09T12:24:49Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Example of local commands to execute */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab@WUR: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
== Signing up ==&lt;br /&gt;
If you haven&#039;t done so already, install git in your local machine and sign up at GitLab@WUR:&lt;br /&gt;
  https://git.wageningenur.nl&lt;br /&gt;
&lt;br /&gt;
== Example of local commands to execute ==&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine, e.g.:&lt;br /&gt;
mkdir ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: &lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2: make private-public rsa key pair&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd ~/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# IMPORTANT: make sure you use the *public* key, not the private part of the key pair!&lt;br /&gt;
# The configuration is finished. &lt;br /&gt;
&lt;br /&gt;
## Create a project:&lt;br /&gt;
&lt;br /&gt;
# 1. Log in https://git.wageningenur.nl. Then create a project (name of the project should not have spaces or dash &#039;-&#039;. In the example, the project is called Turkey_Association&lt;br /&gt;
# 2. Go back to the terminal:&lt;br /&gt;
cd ~/Git_Stuff&lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cp myscript.sh ~/Git_Stuff/Turkey_Association&lt;br /&gt;
cd ~/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git]&lt;br /&gt;
*[https://github.com GitHub, a public Git repository (not to be confused with GitLab@WUR, but uses the same Git versioning software)]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1594</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1594"/>
		<updated>2015-04-09T11:11:41Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Signing up */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab@WUR: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
== Signing up ==&lt;br /&gt;
If you haven&#039;t done so already, install git in your local machine and sign up at GitLab@WUR:&lt;br /&gt;
  https://git.wageningenur.nl&lt;br /&gt;
&lt;br /&gt;
== Example of local commands to execute ==&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine, e.g.:&lt;br /&gt;
mkdir ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: &lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2: make private-public rsa key pair&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd ~/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# IMPORTANT: make sure you use the *public* key, not the private part of the key pair!&lt;br /&gt;
# Go back to the terminal:&lt;br /&gt;
cd ~/Git_Stuff&lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cp myscript.sh ~/Git_Stuff/Turkey_Association&lt;br /&gt;
cd ~/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git]&lt;br /&gt;
*[https://github.com GitHub, a public Git repository (not to be confused with GitLab@WUR, but uses the same Git versioning software)]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1593</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1593"/>
		<updated>2015-04-09T11:11:12Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Signing up */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab@WUR: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
== Signing up ==&lt;br /&gt;
If you haven&#039;t done so already, first sign up at GitLab@WUR:&lt;br /&gt;
  https://git.wageningenur.nl&lt;br /&gt;
&lt;br /&gt;
and install git in your local machine&lt;br /&gt;
&lt;br /&gt;
== Example of local commands to execute ==&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine, e.g.:&lt;br /&gt;
mkdir ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: &lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2: make private-public rsa key pair&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd ~/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# IMPORTANT: make sure you use the *public* key, not the private part of the key pair!&lt;br /&gt;
# Go back to the terminal:&lt;br /&gt;
cd ~/Git_Stuff&lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in ~/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cp myscript.sh ~/Git_Stuff/Turkey_Association&lt;br /&gt;
cd ~/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
[[Bioinformatics_protocols_ABG_Chairgroup | Bioinformatics tips, tricks, workflows at ABGC]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://en.wikipedia.org/wiki/Git_(software) Wikipedia entry on Git]&lt;br /&gt;
*[https://github.com GitHub, a public Git repository (not to be confused with GitLab@WUR, but uses the same Git versioning software)]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1575</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1575"/>
		<updated>2015-03-25T12:16:34Z</updated>

		<summary type="html">&lt;p&gt;Herre011: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab: Create projects and add files&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
## This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
## Configuration:&lt;br /&gt;
&lt;br /&gt;
# 1. Create a folder in your machine:&lt;br /&gt;
/home/juanma/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
# 2. configuration step 1: Copy into that folder the commands from the git-web: https://git.wageningenur.nl/  # and then ABGC_Genomics/&lt;br /&gt;
&lt;br /&gt;
cd /home/juanma/Git_Stuff&lt;br /&gt;
git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# 3. configuration step 2:&lt;br /&gt;
cd /home/juanma/Git_Stuff&lt;br /&gt;
ssh-keygen -t rsa&lt;br /&gt;
cd /home/juanma/.ssh/&lt;br /&gt;
cat id_rsa.pub&lt;br /&gt;
# Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
# Go back to the terminal: &lt;br /&gt;
git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
# Once I have made this connection, my project will appear as a folder in /home/juanma/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
## Add files:&lt;br /&gt;
# Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
cd /home/juanma/Git_Stuff/Turkey_Association&lt;br /&gt;
cp myscript.sh /home/juanma/Git_Stuff/Turkey_Association&lt;br /&gt;
git add myscript.sh&lt;br /&gt;
git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
git push origin master&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=1574</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=1574"/>
		<updated>2015-03-25T12:14:14Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Miscellaneous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Agrogenomics cluster is a [http://en.wikipedia.org/wiki/High-performance_computing High Performance Compute] (HPC) infrastructure hosted by [http://www.wageningenur.nl/nl/activiteit/Opening-High-Performance-Computing-cluster-HPC.htm Wageningen University &amp;amp; Research Centre]. It is open for use for all WUR research groups as well as other organizations, including companies, that have collaborative projects with WUR. &lt;br /&gt;
&lt;br /&gt;
The Agrogenomics HPC was an initiative of the [http://www.breed4food.com/en/breed4food.htm Breed4Food] (B4F) consortium, consisting of the [[About_ABGC | Animal Breeding and Genomics Centre]] (WU-Animal Breeding and Genomics and Wageningen Livestock Research) and four major breeding companies: [http://www.cobb-vantress.com Cobb-Vantress], [https://www.crv4all.nl CRV], [http://www.hendrix-genetics.com Hendrix Genetics], and [http://www.topigs.com TOPIGS]. Currently, in addition to the original partners, the HPC (HPC-Ag) is used by other groups from Wageningen UR (Bioinformatics, Centre for Crop Systems Analysis, Environmental Sciences Group, and Plant Research International) and plant breeding industry (Rijk Zwaan). &lt;br /&gt;
&lt;br /&gt;
== Rationale and Requirements for a new cluster ==&lt;br /&gt;
[[File:Breed4food-logo.jpg|thumb|right|200px|The Breed4Food logo]]&lt;br /&gt;
The Agrogenomics Cluster was originally conceived as being the 7th pillar of the [http://www.breed4food.com/en/show/Breed4Food-initiative-reinforces-the-Netherlands-position-as-an-innovative-country-in-animal-breeding-and-genomics.htm Breed4Food programme]. While the other six pillars revolve around specific research themes, the Cluster represents a joint infrastructure. The rationale behind the cluster is to enable the increasing computational needs in the field of genetics and genomics research, by creating a joint facility that will generate benefits of scale, thereby reducing cost. In addition, the joint infrastructure is intended to facilitate cross-organisational knowledge transfer. In that capacity, the HPC-Ag acts as a joint (virtual) laboratory where researchers - academic and applied - can benefit from each other&#039;s know-how. Lastly, the joint cluster, housed at Wageningen University campus, allows retaining vital and often confidential data sources in a controlled environment, something that cloud services such as Amazon Cloud or others usually can not guarantee.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Process of acquisition and financing ==&lt;br /&gt;
&lt;br /&gt;
[[File:Signing_CatAgro.png|thumb|left|300px|Petra Caessens, manager operations of CAT-AgroFood, signs the contract of the supplier on August 1st, 2013. Next to her Johan van Arendonk on behalf of Breed4Food.]]&lt;br /&gt;
The Agrogenomics cluster was financed by [http://www.wageningenur.nl/en/Expertise-Services/Facilities/CATAgroFood-3/CATAgroFood-3/News-and-agenda/Show/CATAgroFood-invests-in-a-High-Performance-Computing-cluster.htm CATAgroFood]. The [[B4F_cluster#IT_Workgroup | IT-Workgroup]] formulated a set of requirements that in the end were best met by an offer from [http://www.dell.com/learn/nl/nl/rc1078544/hpcc Dell]. [http://www.clustervision.com ClusterVision] was responsible for installing the cluster at the Theia server centre of FB-ICT.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Architecture of the cluster ==&lt;br /&gt;
[[Architecture_of_the_HPC | Main Article: Architecture of the Agrogenomics HPC]]&lt;br /&gt;
[[File:Cluster_scheme.png|thumb|right|600px|Schematic overview of the cluster.]]&lt;br /&gt;
The new Agrogenomics HPC has a classic cluster architecture: state of the art Parallel File System (PSF), headnodes, compute nodes (of varying &#039;size&#039;), all connected by superfast network connections (Infiniband). Implementation of the cluster will be done in stages. The initial stage includes a 600TB PFS, 48 slim nodes of 16 cores and 64GB RAM each, and 2 fat nodes of 64 cores and 1TB RAM each. The overall architecture, that include two head nodes in fall-over configuration and an infiniband network backbone, can be easily expanded by adding nodes and expanding the PFS. The cluster management software is designed to facilitate a heterogenous and evolving cluster.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Housing at Theia ==&lt;br /&gt;
[[File:Map_Theia.png|thumb|left|200px|Location of Theia, just outside of Wageningen campus]]&lt;br /&gt;
The Agrogenomics Cluster is housed at one of two main server centres of WUR-FB-IT, near Wageningen Campus. The building (Theia)  may not look like much from the outside (used to function as potato storage) but inside is a modern server centre that includes, a.o., emergency power backup systems and automated fire extinguishers. Many of the server facilities provided by FB-ICT that are used on a daily basis by WUR personnel and students are located there, as is the Agrogenomics Cluster. Access to Theia is evidently highly restricted and can only be granted in the presence of a representative of FB-IT.&lt;br /&gt;
{{-}}&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;10%&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
[[File:Cluster2_pic.png|thumb|left|220px|Some components of the cluster after unpacking.]]&lt;br /&gt;
| width=&amp;quot;70%&amp;quot; |&lt;br /&gt;
[[File:Cluster_pic.png|thumb|right|400px|The final configuration after installation.]]&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
[[HPC_management | Main Article: HPC management]]&lt;br /&gt;
&lt;br /&gt;
Project Leader of the HPC is Stephen Janssen (Wageningen UR,FB-IT, Service Management). [[User:pollm001 | Koen Pollmann (Wageningen UR,FB-IT, Infrastructure)]] and [[User:dawes001 | Gwen Dawes (Wageningen UR, FB-IT, Infrastructure)]] are responsible for [[Maintenance_and_Management | Maintenance and Management]].&lt;br /&gt;
&lt;br /&gt;
== Access Policy ==&lt;br /&gt;
[[Access_Policy | Main Article: Access Policy]]&lt;br /&gt;
&lt;br /&gt;
Access policy is still a work in progress. In principle, all staff and students of the five main partners will have access to the cluster. Access needs to be granted actively (by creation of an account on the cluster by FB-IT reagdring non WUR accounts). Use of resources is limited by the scheduler. Depending on availability of queues (&#039;partitions&#039;) granted to a user, priority to the system&#039;s resources is regulated.&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
&lt;br /&gt;
* [[List_of_users | List of users (alphabetical order)]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
&lt;br /&gt;
== Using the HPC-Ag ==&lt;br /&gt;
=== Gaining access to the HPC-Ag ===&lt;br /&gt;
Access to the cluster and file transfer are done by [http://en.wikipedia.org/wiki/Secure_Shell ssh-based protocols].&lt;br /&gt;
* [[log_in_to_B4F_cluster | Logging into cluster using ssh and file transfer]]&lt;br /&gt;
&lt;br /&gt;
=== Cluster Management Software and Scheduler ===&lt;br /&gt;
The HPC-Ag uses Bright Cluster Manager software for overall cluster management, and Slurm as job scheduler.&lt;br /&gt;
* [[BCM_on_B4F_cluster | Monitor cluster status with BCM]]&lt;br /&gt;
* [[SLURM_on_B4F_cluster | Submit jobs with Slurm]]&lt;br /&gt;
* [[SLURM_Compare | Rosetta Stone of Workload Managers]]&lt;br /&gt;
&lt;br /&gt;
=== Installation of software by users ===&lt;br /&gt;
&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
=== Installed software ===&lt;br /&gt;
&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
=== Being in control of Environment parameters ===&lt;br /&gt;
&lt;br /&gt;
* [[Using_environment_modules | Using environment modules]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Setting_TMPDIR | Set a custom temporary directory location]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
=== Controlling costs ===&lt;br /&gt;
&lt;br /&gt;
* [[SACCT | using SACCT to see your costs]]&lt;br /&gt;
* [[get_my_bill | using the &amp;quot;get_my_bill&amp;quot; script to estimate costs]]&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
* [[Bioinformatics_tips_tricks_workflows | Bioinformatics tips, tricks, and workflows]]&lt;br /&gt;
* [[Convert_between_MediaWiki_and_other_formats | Convert between MediaWiki format and other formats]]&lt;br /&gt;
* [[Manual GitLab | GitLab: Create projects and add scrits]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Maintenance_and_Management | Maintenance and Management]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[About_ABGC | About ABGC]]&lt;br /&gt;
* [[Computer_cluster | High Performance Computing @ABGC]]&lt;br /&gt;
* [[Lustre_PFS_layout | Lustre Parallel File System layout]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://www.breed4food.com/en/show/Breed4Food-initiative-reinforces-the-Netherlands-position-as-an-innovative-country-in-animal-breeding-and-genomics.htm Breed4Food programme]&lt;br /&gt;
* [http://www.wageningenur.nl/en/Expertise-Services/Facilities/CATAgroFood-3/CATAgroFood-3/Our-facilities/Show/High-Performance-Computing-Cluster-HPC.htm CATAgroFood offers a HPC facilty]&lt;br /&gt;
* [http://www.cobb-vantress.com Cobb-Vantress homepage]&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [https://www.crv4all.nl CRV homepage]&lt;br /&gt;
* [http://www.hendrix-genetics.com Hendrix Genetics homepage]&lt;br /&gt;
* [http://www.topigs.com TOPIGS homepage]&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_Linux Scientific Linux]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Cheatsheet Help with editing Wiki pages]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1573</id>
		<title>Manual GitLab</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Manual_GitLab&amp;diff=1573"/>
		<updated>2015-03-25T12:07:42Z</updated>

		<summary type="html">&lt;p&gt;Herre011: Created page with &amp;quot;Manual GitLab: Create projects and add files ## This shows an example, step by step, to create a project and add files into that project.  1. Configuration:  Create a folder i...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual GitLab: Create projects and add files ##&lt;br /&gt;
This shows an example, step by step, to create a project and add files into that project.&lt;br /&gt;
&lt;br /&gt;
1. Configuration:&lt;br /&gt;
&lt;br /&gt;
Create a folder in your machine:&lt;br /&gt;
 /home/juanma/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
configuration step 1: Copy into that folder the commands from the git-web: https://git.wageningenur.nl/  and then ABGC_Genomics/&lt;br /&gt;
&lt;br /&gt;
 cd /home/juanma/Git_Stuff&lt;br /&gt;
 git config --global user.name &amp;quot;Herrero Medrano, Juan&amp;quot;&lt;br /&gt;
 git config --global user.email &amp;quot;juan.herreromedrano@wur.nl&amp;quot;&lt;br /&gt;
&lt;br /&gt;
configuration step 2:&lt;br /&gt;
&lt;br /&gt;
 cd /home/juanma/Git_Stuff&lt;br /&gt;
 ssh-keygen -t rsa&lt;br /&gt;
 cd /home/juanma/.ssh/&lt;br /&gt;
 cat id_rsa.pub&lt;br /&gt;
&lt;br /&gt;
Copy the code and go to the git-web: Profile settings -&amp;gt; SSH Keys. Paste the code and add key. &lt;br /&gt;
configuration step 3: Go back to the terminal: &lt;br /&gt;
&lt;br /&gt;
 git clone git@git.wageningenur.nl:ABGC_Genomics/Turkey_Association.git&lt;br /&gt;
&lt;br /&gt;
Once I have made this connection, my project will appear as a folder in /home/juanma/Git_Stuff&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Add files:&lt;br /&gt;
Add scripts to the project &amp;quot;Turkey_Association&amp;quot; :&lt;br /&gt;
 cd /home/juanma/Git_Stuff/Turkey_Association&lt;br /&gt;
 cp myscript.sh /home/juanma/Git_Stuff/Turkey_Association&lt;br /&gt;
 git add myscript.sh&lt;br /&gt;
 git commit -m &amp;quot;myfirst_commit&amp;quot;&lt;br /&gt;
 git push origin master&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=1572</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Main_Page&amp;diff=1572"/>
		<updated>2015-03-25T11:59:37Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Miscellaneous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Agrogenomics cluster is a [http://en.wikipedia.org/wiki/High-performance_computing High Performance Compute] (HPC) infrastructure hosted by [http://www.wageningenur.nl/nl/activiteit/Opening-High-Performance-Computing-cluster-HPC.htm Wageningen University &amp;amp; Research Centre]. It is open for use for all WUR research groups as well as other organizations, including companies, that have collaborative projects with WUR. &lt;br /&gt;
&lt;br /&gt;
The Agrogenomics HPC was an initiative of the [http://www.breed4food.com/en/breed4food.htm Breed4Food] (B4F) consortium, consisting of the [[About_ABGC | Animal Breeding and Genomics Centre]] (WU-Animal Breeding and Genomics and Wageningen Livestock Research) and four major breeding companies: [http://www.cobb-vantress.com Cobb-Vantress], [https://www.crv4all.nl CRV], [http://www.hendrix-genetics.com Hendrix Genetics], and [http://www.topigs.com TOPIGS]. Currently, in addition to the original partners, the HPC (HPC-Ag) is used by other groups from Wageningen UR (Bioinformatics, Centre for Crop Systems Analysis, Environmental Sciences Group, and Plant Research International) and plant breeding industry (Rijk Zwaan). &lt;br /&gt;
&lt;br /&gt;
== Rationale and Requirements for a new cluster ==&lt;br /&gt;
[[File:Breed4food-logo.jpg|thumb|right|200px|The Breed4Food logo]]&lt;br /&gt;
The Agrogenomics Cluster was originally conceived as being the 7th pillar of the [http://www.breed4food.com/en/show/Breed4Food-initiative-reinforces-the-Netherlands-position-as-an-innovative-country-in-animal-breeding-and-genomics.htm Breed4Food programme]. While the other six pillars revolve around specific research themes, the Cluster represents a joint infrastructure. The rationale behind the cluster is to enable the increasing computational needs in the field of genetics and genomics research, by creating a joint facility that will generate benefits of scale, thereby reducing cost. In addition, the joint infrastructure is intended to facilitate cross-organisational knowledge transfer. In that capacity, the HPC-Ag acts as a joint (virtual) laboratory where researchers - academic and applied - can benefit from each other&#039;s know-how. Lastly, the joint cluster, housed at Wageningen University campus, allows retaining vital and often confidential data sources in a controlled environment, something that cloud services such as Amazon Cloud or others usually can not guarantee.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Process of acquisition and financing ==&lt;br /&gt;
&lt;br /&gt;
[[File:Signing_CatAgro.png|thumb|left|300px|Petra Caessens, manager operations of CAT-AgroFood, signs the contract of the supplier on August 1st, 2013. Next to her Johan van Arendonk on behalf of Breed4Food.]]&lt;br /&gt;
The Agrogenomics cluster was financed by [http://www.wageningenur.nl/en/Expertise-Services/Facilities/CATAgroFood-3/CATAgroFood-3/News-and-agenda/Show/CATAgroFood-invests-in-a-High-Performance-Computing-cluster.htm CATAgroFood]. The [[B4F_cluster#IT_Workgroup | IT-Workgroup]] formulated a set of requirements that in the end were best met by an offer from [http://www.dell.com/learn/nl/nl/rc1078544/hpcc Dell]. [http://www.clustervision.com ClusterVision] was responsible for installing the cluster at the Theia server centre of FB-ICT.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Architecture of the cluster ==&lt;br /&gt;
[[Architecture_of_the_HPC | Main Article: Architecture of the Agrogenomics HPC]]&lt;br /&gt;
[[File:Cluster_scheme.png|thumb|right|600px|Schematic overview of the cluster.]]&lt;br /&gt;
The new Agrogenomics HPC has a classic cluster architecture: state of the art Parallel File System (PSF), headnodes, compute nodes (of varying &#039;size&#039;), all connected by superfast network connections (Infiniband). Implementation of the cluster will be done in stages. The initial stage includes a 600TB PFS, 48 slim nodes of 16 cores and 64GB RAM each, and 2 fat nodes of 64 cores and 1TB RAM each. The overall architecture, that include two head nodes in fall-over configuration and an infiniband network backbone, can be easily expanded by adding nodes and expanding the PFS. The cluster management software is designed to facilitate a heterogenous and evolving cluster.&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Housing at Theia ==&lt;br /&gt;
[[File:Map_Theia.png|thumb|left|200px|Location of Theia, just outside of Wageningen campus]]&lt;br /&gt;
The Agrogenomics Cluster is housed at one of two main server centres of WUR-FB-IT, near Wageningen Campus. The building (Theia)  may not look like much from the outside (used to function as potato storage) but inside is a modern server centre that includes, a.o., emergency power backup systems and automated fire extinguishers. Many of the server facilities provided by FB-ICT that are used on a daily basis by WUR personnel and students are located there, as is the Agrogenomics Cluster. Access to Theia is evidently highly restricted and can only be granted in the presence of a representative of FB-IT.&lt;br /&gt;
{{-}}&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;10%&amp;quot; |&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
[[File:Cluster2_pic.png|thumb|left|220px|Some components of the cluster after unpacking.]]&lt;br /&gt;
| width=&amp;quot;70%&amp;quot; |&lt;br /&gt;
[[File:Cluster_pic.png|thumb|right|400px|The final configuration after installation.]]&lt;br /&gt;
|}&lt;br /&gt;
{{-}}&lt;br /&gt;
&lt;br /&gt;
== Management ==&lt;br /&gt;
[[HPC_management | Main Article: HPC management]]&lt;br /&gt;
&lt;br /&gt;
Project Leader of the HPC is Stephen Janssen (Wageningen UR,FB-IT, Service Management). [[User:pollm001 | Koen Pollmann (Wageningen UR,FB-IT, Infrastructure)]] and [[User:dawes001 | Gwen Dawes (Wageningen UR, FB-IT, Infrastructure)]] are responsible for [[Maintenance_and_Management | Maintenance and Management]].&lt;br /&gt;
&lt;br /&gt;
== Access Policy ==&lt;br /&gt;
[[Access_Policy | Main Article: Access Policy]]&lt;br /&gt;
&lt;br /&gt;
Access policy is still a work in progress. In principle, all staff and students of the five main partners will have access to the cluster. Access needs to be granted actively (by creation of an account on the cluster by FB-IT reagdring non WUR accounts). Use of resources is limited by the scheduler. Depending on availability of queues (&#039;partitions&#039;) granted to a user, priority to the system&#039;s resources is regulated.&lt;br /&gt;
&lt;br /&gt;
== Users ==&lt;br /&gt;
&lt;br /&gt;
* [[List_of_users | List of users (alphabetical order)]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
&lt;br /&gt;
== Using the HPC-Ag ==&lt;br /&gt;
=== Gaining access to the HPC-Ag ===&lt;br /&gt;
Access to the cluster and file transfer are done by [http://en.wikipedia.org/wiki/Secure_Shell ssh-based protocols].&lt;br /&gt;
* [[log_in_to_B4F_cluster | Logging into cluster using ssh and file transfer]]&lt;br /&gt;
&lt;br /&gt;
=== Cluster Management Software and Scheduler ===&lt;br /&gt;
The HPC-Ag uses Bright Cluster Manager software for overall cluster management, and Slurm as job scheduler.&lt;br /&gt;
* [[BCM_on_B4F_cluster | Monitor cluster status with BCM]]&lt;br /&gt;
* [[SLURM_on_B4F_cluster | Submit jobs with Slurm]]&lt;br /&gt;
* [[SLURM_Compare | Rosetta Stone of Workload Managers]]&lt;br /&gt;
&lt;br /&gt;
=== Installation of software by users ===&lt;br /&gt;
&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
=== Installed software ===&lt;br /&gt;
&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
=== Being in control of Environment parameters ===&lt;br /&gt;
&lt;br /&gt;
* [[Using_environment_modules | Using environment modules]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Setting_TMPDIR | Set a custom temporary directory location]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
&lt;br /&gt;
=== Controlling costs ===&lt;br /&gt;
&lt;br /&gt;
* [[SACCT | using SACCT to see your costs]]&lt;br /&gt;
* [[get_my_bill | using the &amp;quot;get_my_bill&amp;quot; script to estimate costs]]&lt;br /&gt;
&lt;br /&gt;
== Miscellaneous ==&lt;br /&gt;
* [[Bioinformatics_tips_tricks_workflows | Bioinformatics tips, tricks, and workflows]]&lt;br /&gt;
* [[Convert_between_MediaWiki_and_other_formats | Convert between MediaWiki format and other formats]]&lt;br /&gt;
* [[Manual GitLab | Create projects and add scrits]]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Maintenance_and_Management | Maintenance and Management]]&lt;br /&gt;
* [[Mailinglist | Electronic mail discussion lists]]&lt;br /&gt;
* [[About_ABGC | About ABGC]]&lt;br /&gt;
* [[Computer_cluster | High Performance Computing @ABGC]]&lt;br /&gt;
* [[Lustre_PFS_layout | Lustre Parallel File System layout]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://www.breed4food.com/en/show/Breed4Food-initiative-reinforces-the-Netherlands-position-as-an-innovative-country-in-animal-breeding-and-genomics.htm Breed4Food programme]&lt;br /&gt;
* [http://www.wageningenur.nl/en/Expertise-Services/Facilities/CATAgroFood-3/CATAgroFood-3/Our-facilities/Show/High-Performance-Computing-Cluster-HPC.htm CATAgroFood offers a HPC facilty]&lt;br /&gt;
* [http://www.cobb-vantress.com Cobb-Vantress homepage]&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [https://www.crv4all.nl CRV homepage]&lt;br /&gt;
* [http://www.hendrix-genetics.com Hendrix Genetics homepage]&lt;br /&gt;
* [http://www.topigs.com TOPIGS homepage]&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scientific_Linux Scientific Linux]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Help:Cheatsheet Help with editing Wiki pages]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=User:Herrer01&amp;diff=1439</id>
		<title>User:Herrer01</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=User:Herrer01&amp;diff=1439"/>
		<updated>2015-02-19T10:16:41Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Juan Manuel Herrero Medrano */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Juan Manuel Herrero Medrano ==&lt;br /&gt;
&lt;br /&gt;
Postdoctoral position at Wageningen University, Animal Breeding and Genomics Centre. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Scientific interests:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bioinformatics&lt;br /&gt;
* Next Generation Sequence data and High-density SNP arrays analysis&lt;br /&gt;
* Functional genomics&lt;br /&gt;
* Population genomics&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Main current projects&#039;&#039;&#039;&lt;br /&gt;
* Storage, mapping variants calling analysis on re-sequence data on various livestock species&lt;br /&gt;
* Functional aspects of turkey genome variation&lt;br /&gt;
* De novo assembly and annotation of genomes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Procedures&#039;&#039;&#039;&lt;br /&gt;
* Main sequencing platform is Illumina (We started in 2008 on Solexa GA, to currently Illumina HiSeq).&lt;br /&gt;
* Short-read mapping (Mosaik, BWA)&lt;br /&gt;
* Variant calling (Samtools, GATK, ANGSD).&lt;br /&gt;
* Functional analysis of variants (Annovar, Variant Effect Predictor)&lt;br /&gt;
* Various population- and phylogenomic approaches &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Main programming languages:&#039;&#039;&#039;&lt;br /&gt;
* Linux shell scripting&lt;br /&gt;
* Python&lt;br /&gt;
* R&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=User:Herrer01&amp;diff=1438</id>
		<title>User:Herrer01</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=User:Herrer01&amp;diff=1438"/>
		<updated>2015-02-19T10:14:55Z</updated>

		<summary type="html">&lt;p&gt;Herre011: Created page with &amp;quot;== Juan Manuel Herrero Medrano ==  Postdoctoral position at Wageningen University, Animal Breeding and Genomics Centre.   &amp;#039;&amp;#039;&amp;#039;Scientific interests:&amp;#039;&amp;#039;&amp;#039;  * Bioinformatics * Next...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Juan Manuel Herrero Medrano ==&lt;br /&gt;
&lt;br /&gt;
Postdoctoral position at Wageningen University, Animal Breeding and Genomics Centre. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Scientific interests:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Bioinformatics&lt;br /&gt;
* Next Generation Sequence data and High-density SNP arrays analysis&lt;br /&gt;
* Functional genomics&lt;br /&gt;
* Population genomics&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Main current projects&#039;&#039;&#039;&lt;br /&gt;
* Storage, mapping variants calling analysis on re-sequence data on various livestock species&lt;br /&gt;
* Functional aspects of genome variation in Turkey&lt;br /&gt;
* De novo assembly and annotation of genomes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Procedures&#039;&#039;&#039;&lt;br /&gt;
* Main sequencing platform is Illumina (We started in 2008 on Solexa GA, to currently Illumina HiSeq).&lt;br /&gt;
* Depending on research questions various short-read mapping programs are used (Mosaik, BWA, BWA/Stampy, MrsFAST)&lt;br /&gt;
* Variant calling (Samtools, GATK).&lt;br /&gt;
* Functional analysis of variants (Annovar, Variant Effect Predictor)&lt;br /&gt;
* Various population- and phylogenomic approaches &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Main programming languages:&#039;&#039;&#039;&lt;br /&gt;
* Linux shell scripting&lt;br /&gt;
* Python&lt;br /&gt;
* R&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=List_of_users&amp;diff=1437</id>
		<title>List of users</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=List_of_users&amp;diff=1437"/>
		<updated>2015-02-19T10:07:16Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Active users */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Active users ==&lt;br /&gt;
&lt;br /&gt;
List of users. Alphabetical order (last/family name). Provide some background information by adding information to the &#039;User:username&#039; page.&lt;br /&gt;
&lt;br /&gt;
* [[User:Barris01 | Wes Barris (Cobb)]]&lt;br /&gt;
* [[User:Basti015 | John Bastiaansen (ABGC)]]&lt;br /&gt;
* [[User:Binsb003 | Rianne van Binsbergen (ABGC)]]&lt;br /&gt;
* [[User:Bosse014 | Mirte Bosse (ABGC)]]&lt;br /&gt;
* [[User:Bouwm024 | Aniek Bouwman (ABGC)]]&lt;br /&gt;
* [[User:Brasc001 | Pim Brascamp (ABGC)]]&lt;br /&gt;
* [[User:Calus001 | Mario Calus (ABGC)]]&lt;br /&gt;
* [[User:dongen01 | Henk van Dongen (TOPIGS)]]&lt;br /&gt;
* [[User:Frant001 | Laurent Frantz (ABGC)]]&lt;br /&gt;
* [[User:Haars001 | Jan van Haarst (PRI)]]&lt;br /&gt;
* [[User:Herrer01 | Juanma Herrero (ABGC)]]&lt;br /&gt;
* [[User:Hulse002 | Ina Hulsegge (ABGC)]] &lt;br /&gt;
* [[User:Hulze001 | Alex Hulzebosch (ABGC)]]&lt;br /&gt;
* [[User:Lopes01 | Marcos Soares Lopes (TOPIGS)]]&lt;br /&gt;
* [[User:Madse001 | Ole Madsen (ABGC)]]&lt;br /&gt;
* [[User:Megen002 | Hendrik-Jan Megens (ABGC)]]&lt;br /&gt;
* [[User:Nijve002 | Harm Nijveen (Bioinformatica)]]&lt;br /&gt;
* [[User:paude004 | Yogesh Paudel (ABGC)]]&lt;br /&gt;
* [[User:Schroo01 | Chris Schrooten (CRV)]]&lt;br /&gt;
* [[User:Smit089 | Sandra Smit (Bioinformatica)]]&lt;br /&gt;
* [[User:Vande018 | Jeremie Vandenplas (ABGC)]]&lt;br /&gt;
* [[User:Veerk001 | Roel Veerkamp (ABGC)]]&lt;br /&gt;
* [[User:Vereij01 | Addie Vereijken (Hendrix Genetics)]]&lt;br /&gt;
&lt;br /&gt;
== FB-ICT Management of the HPC == &lt;br /&gt;
&lt;br /&gt;
* [[User:Bohme001 | Andre ten Böhmer (WUR, FB-IT, Infrastructure)]]&lt;br /&gt;
* [[User:Janss115 | Stephen Janssen (WUR, FB-IT, Service Management)]]&lt;br /&gt;
* [[User:pollm001 | Koen Pollmann (WUR, FB-IT, Infrastructure)]]&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Plink_1.9&amp;diff=1375</id>
		<title>Plink 1.9</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Plink_1.9&amp;diff=1375"/>
		<updated>2015-02-05T15:06:43Z</updated>

		<summary type="html">&lt;p&gt;Herre011: Created page with &amp;quot;[https://www.cog-genomics.org/plink2/ PLINK] is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://www.cog-genomics.org/plink2/ PLINK] is a free, open-source whole genome association analysis toolset, designed to perform a range of basic, large-scale analyses in a computationally efficient manner. Development of the baseline PLINK toolset has resumed and beta testing for the next (1.90) release has now begun.The new release, by Chris Chang and colleagues, is a complete rewrite of the original code and represents a very significant improvement in overall speed and functionality. Moving forward, these changes should enable PLINK to meet the demands of ever-larger genetic datasets.&lt;br /&gt;
&lt;br /&gt;
== Module file ==&lt;br /&gt;
The module file can be found in this location:&lt;br /&gt;
  /cm/shared/modulefiles/SHARED/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;tcl&#039;&amp;gt;&lt;br /&gt;
#%Module1.0#######################################################################&lt;br /&gt;
## plink 1.9 modulefile&lt;br /&gt;
##&lt;br /&gt;
proc ModulesHelp { } {&lt;br /&gt;
&lt;br /&gt;
        puts stderr &amp;quot;\tAdds plink v1.9 to your environment&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
module-whatis   &amp;quot;Adds plink v1.9 to your environment&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set             plink_v19_root        /cm/shared/apps/SHARED/plink/1.9&lt;br /&gt;
&lt;br /&gt;
prepend-path     PATH             $plink_v19_root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installation details ==&lt;br /&gt;
Installed from downloaded 64bit binary, see external links.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://pngu.mgh.harvard.edu/~purcell/plink2/]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=ANGSD_0.614&amp;diff=1374</id>
		<title>ANGSD 0.614</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=ANGSD_0.614&amp;diff=1374"/>
		<updated>2015-02-05T14:49:21Z</updated>

		<summary type="html">&lt;p&gt;Herre011: Created page with &amp;quot;[http://popgen.dk/wiki/index.php/ANGSD ANGSD] ANGSD is a software for analyzing next generation sequencing data. The software can handle a number of different input types from...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://popgen.dk/wiki/index.php/ANGSD ANGSD] ANGSD is a software for analyzing next generation sequencing data. The software can handle a number of different input types from mapped reads to imputed genotype probabilities. Most methods take genotype uncertainty into account instead of basing the analysis on called genotypes. This is especially useful for low and medium depth data. The software is written in C++ and has been used on large sample sizes.&lt;br /&gt;
&lt;br /&gt;
== Module file ==&lt;br /&gt;
The module file can be found in this location:&lt;br /&gt;
  /cm/shared/modulefiles/SHARED/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;tcl&#039;&amp;gt;&lt;br /&gt;
#%Module1.0#######################################################################&lt;br /&gt;
##  ANGSD 0.614 modulefile&lt;br /&gt;
##&lt;br /&gt;
proc ModulesHelp { } {&lt;br /&gt;
&lt;br /&gt;
         puts stderr &amp;quot;\tAdds ANGSD v0.614 to your environment&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
module-whatis   &amp;quot;Adds ANGSD v0.614 to your environment&amp;quot;&lt;br /&gt;
&lt;br /&gt;
set             angsd_v0614_root /cm/shared/apps/WUR/ABGC/ANGSD/angsd0.614&lt;br /&gt;
&lt;br /&gt;
prepend-path     PATH             $angsd_v0614_root&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installation details ==&lt;br /&gt;
Installed from downloaded 64bit binary, see external links.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Globally_installed_software | Globally installed software]]&lt;br /&gt;
* [[ABGC_modules | ABGC specific modules]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://popgen.dk/wiki/index.php/ANGSD]&lt;br /&gt;
* [https://github.com/ANGSD/angsd]&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
	<entry>
		<id>https://wiki.anunna.wur.nl/index.php?title=Globally_installed_software&amp;diff=1373</id>
		<title>Globally installed software</title>
		<link rel="alternate" type="text/html" href="https://wiki.anunna.wur.nl/index.php?title=Globally_installed_software&amp;diff=1373"/>
		<updated>2015-02-05T14:42:42Z</updated>

		<summary type="html">&lt;p&gt;Herre011: /* Available as global SHARED modules */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Available as modules ==&lt;br /&gt;
* gcc/4.8.1&lt;br /&gt;
* python/2.7.6&lt;br /&gt;
* python/3.3.3&lt;br /&gt;
* R/3.0.2&lt;br /&gt;
&lt;br /&gt;
== Globally installed on all nodes ==&lt;br /&gt;
&lt;br /&gt;
* Perl5.10&lt;br /&gt;
* pigz&lt;br /&gt;
* Python2.6&lt;br /&gt;
* BioPerl v1.61&lt;br /&gt;
* [http://samtools.sourceforge.net/tabix.shtml bgzip]&lt;br /&gt;
* [http://samtools.sourceforge.net/tabix.shtml tabix v0.2.5]&lt;br /&gt;
&lt;br /&gt;
== Available as global SHARED modules ==&lt;br /&gt;
Software can be deposited in:&lt;br /&gt;
  /cm/shared/apps/SHARED/&lt;br /&gt;
&lt;br /&gt;
Modules can be found in:&lt;br /&gt;
  /cm/shared/modulefiles/SHARED/&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;90%&amp;quot;&lt;br /&gt;
|- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [[allpathslg_48961 | ALLPATHS-LG/48961]]&lt;br /&gt;
* [[allpathslg 51910 | ALLPATHS-LG/51910]]&lt;br /&gt;
* [[ANGSD_0.614 | angsd/0.614]]&lt;br /&gt;
* [[augustus_2.7 | augustus/2.7]]&lt;br /&gt;
* [[bedtools2.18 | bedtools/2.18.0]]&lt;br /&gt;
* [[BLAST | BLAST+/2.2.28]]   &lt;br /&gt;
* [[blat_v35 |blat/v35]]&lt;br /&gt;
* [[bowtie2_v2.2.1 | bowtie/2-2.2.1]]&lt;br /&gt;
* [[bowtie1_v1.0.0 | bowtie/1-1.0.0]]&lt;br /&gt;
* [[bwa_5.9 | bwa/0.5.9]]   &lt;br /&gt;
* [[bwa_7.5 | bwa/0.7.5a]]&lt;br /&gt;
* [[cegma_2.4 | cegma/2.4]]   &lt;br /&gt;
* [[Cufflinks | cufflinks/2.1.1]]&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [[exonerate_2.2.0 | exonerate/2.2.0-x86_64]] &lt;br /&gt;
* [[geneid_1.4.4 | geneid/1.4.4]]&lt;br /&gt;
* [[genewise_2.2.3 | genewise/2.2.3-rc7]]     &lt;br /&gt;
* [[gmap_2014-01-21 | gmap/2014-01-21]]&lt;br /&gt;
* [[hmmer_3.1 | hmmer/3.1b1]]&lt;br /&gt;
* [[jellyfish_2.1.1 | jellyfish/2.1.1]]&lt;br /&gt;
* [[MAFFT_7.130 | MAFFT/7.130]]&lt;br /&gt;
* [[maker_2.2.8 | maker/2.28]]&lt;br /&gt;
* [[Muscle_3.8.31 | muscle/3.8.31]]     &lt;br /&gt;
* [[Plink_1.07 | Plink/1.07]]&lt;br /&gt;
* [[Plink_1.9 | Plink/1.9]]&lt;br /&gt;
* [[Provean_1.1.3 | provean/1.1.3]]  &lt;br /&gt;
* [[RepeatMasker_4.0.3 | RepeatMasker/4.0.3]]&lt;br /&gt;
&lt;br /&gt;
| width=&amp;quot;30%&amp;quot; |&lt;br /&gt;
* [[RepeatModeler_1.0.7 | RepeatModeler/1.0.7]]&lt;br /&gt;
* [[RAxML8.0.0 | RAxML/8.0.0]]&lt;br /&gt;
* [[samtools v0.1.12a | samtools/0.1.12a]]&lt;br /&gt;
* [[samtools v0.1.19 | samtools/0.1.19]]&lt;br /&gt;
* [[snap | snap/2013-11-29]]&lt;br /&gt;
* [[soapdenovo2_r240 | SOAPdenovo2/r240]]&lt;br /&gt;
* [[sra_toolkit_2.3.4 | sra-toolkit/2.3.4]]&lt;br /&gt;
* [[TopHat_2.0.11 | tophat/2.0.11]]&lt;br /&gt;
* [[Trinity_r20131110 | Trinity/r20131110]]&lt;br /&gt;
* [[wgs_assembler_8.1 | wgs-assembler/8.1]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Adding a module to your current session ==&lt;br /&gt;
Use &amp;lt;code&amp;gt;module apropos&amp;lt;/code&amp;gt; to find the module you wish to use, then &amp;lt;code&amp;gt;module load&amp;lt;/code&amp;gt; to enable it.&lt;br /&gt;
&lt;br /&gt;
== Adding a custom module directory to your environment ==&lt;br /&gt;
To allow the &amp;lt;code&amp;gt;module&amp;lt;/code&amp;gt; program to find the custom module directory, the location of that directory has to be added to &amp;lt;code&amp;gt;MODULEPATH&amp;lt;/code&amp;gt; variable. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
export MODULEPATH=$MODULEPATH:/cm/shared/apps/WUR/ABGC/modulefiles&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This can be made permanent by adding this line of code to the &amp;lt;code&amp;gt;.bash_profile&amp;lt;/code&amp;gt; file in the root of your home folder. To then load the modified &amp;lt;code&amp;gt;MODULEPATH&amp;lt;/code&amp;gt; variable you have to load  &amp;lt;code&amp;gt;.bash_profile&amp;lt;/code&amp;gt; again:&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
source .bash_profile&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This needs to be done only for terminals that are already open. Next time you login, &amp;lt;code&amp;gt;.bash_profile&amp;lt;/code&amp;gt; will be loaded automatically.&lt;br /&gt;
&lt;br /&gt;
You can check if the modules are found.&lt;br /&gt;
&amp;lt;source lang=&#039;bash&#039;&amp;gt;&lt;br /&gt;
module avail&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
This should give output that includes something similar to this:&lt;br /&gt;
&lt;br /&gt;
  ---------------------------------------- /cm/shared/modulefiles/ -----------------------------------------&lt;br /&gt;
  ALLPATHS-LG/48961      bwa/0.7.5a             jellyfish/2.1.1        RepeatMasker/4.0.3&lt;br /&gt;
  augustus/2.7           cegma/2.4              MAFFT/7.130            RepeatModeler/1.0.7&lt;br /&gt;
  bedtools/2.18.0        cufflinks/2.1.1        maker/2.28             samtools/0.1.12a&lt;br /&gt;
  BLAST+/2.2.28          exonerate/2.2.0-x86_64 muscle/3.8.31          samtools/0.1.19&lt;br /&gt;
  blat/v35               geneid/1.4.4           plink/1.07             snap/2013-11-29&lt;br /&gt;
  bowtie/2-2.2.1         genewise/2.2.3-rc7     provean/1.1.3          SOAPdenovo2/r240&lt;br /&gt;
  bwa/0.5.9              hmmer/3.1b1            RAxML/8.0.0            tophat/2.0.11&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Main_Page#Using_the_B4F_Cluster | Using the B4F Cluster]]&lt;br /&gt;
* [[Domain_specific_software_on_B4Fcluster_installation_by_users | Installing domain specific software: installation by users]]&lt;br /&gt;
* [[Setting local variables]]&lt;br /&gt;
* [[Installing_R_packages_locally | Installing R packages locally]]&lt;br /&gt;
* [[Setting_up_Python_virtualenv | Setting up and using a virtual environment for Python3 ]]&lt;br /&gt;
* [[ABGC_modules | modules specific for ABGC ]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;/div&gt;</summary>
		<author><name>Herre011</name></author>
	</entry>
</feed>