<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.bwhpc.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=S+Richling</id>
	<title>bwHPC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.bwhpc.de/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=S+Richling"/>
	<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/e/Special:Contributions/S_Richling"/>
	<updated>2026-06-04T14:32:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=16089</id>
		<title>Helix/Software/Matlab</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=16089"/>
		<updated>2026-05-21T13:54:52Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border: 2px solid #d33; background-color: #fee7e6; padding: 10px; margin-bottom: 1em; width: 100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;⚠ MATLAB modules have been removed on March 31, 2026.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The MathWorks state license (Landeslizenz) has expired on March 31, 2026 and will not be renewed. The MATLAB modules &amp;lt;code&amp;gt;math/matlab&amp;lt;/code&amp;gt; are no longer be available on Helix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Alternatives:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;GNU Octave&#039;&#039;&#039; (&amp;lt;code&amp;gt;module load math/octave&amp;lt;/code&amp;gt;): MATLAB scripts that do not use special features of toolboxes may run with Octave without or with minor changes.&lt;br /&gt;
* &#039;&#039;&#039;Matlab Compiler / Matlab Runtime&#039;&#039;&#039;: Use the [https://de.mathworks.com/products/compiler.html MATLAB Compiler] to build stand-alone binaries on your local computer (with your own license) and run them with the MATLAB Runtime on the cluster — no license required at runtime (see section &amp;quot;Compile MATLAB binaries with mcc&amp;quot; below).&lt;br /&gt;
* &#039;&#039;&#039;Institute license&#039;&#039;&#039;: If your institute has its own MathWorks network license, it may be possible to use it from the cluster. This must be checked on a case-by-case basis — please [https://www.bwhpc.de/supportportal.php submit a ticket].&lt;br /&gt;
* Other alternatives: &amp;lt;code&amp;gt;math/julia&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;math/R&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;devel/python&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Softwarepage|math/matlab}}&lt;br /&gt;
&lt;br /&gt;
{| width=600px class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Description !! Content&lt;br /&gt;
|-&lt;br /&gt;
| module load&lt;br /&gt;
| math/matlab&lt;br /&gt;
|-&lt;br /&gt;
| License&lt;br /&gt;
| [https://de.mathworks.com/pricing-licensing/index.html?intendeduse=edu&amp;amp;prodcode=ML Academic License/Commercial]&lt;br /&gt;
|-&lt;br /&gt;
| Citing&lt;br /&gt;
| n/a&lt;br /&gt;
|-&lt;br /&gt;
| Links&lt;br /&gt;
| [https://de.mathworks.com/products/matlab/ MATLAB Homepage] &amp;amp;#124; [https://de.mathworks.com/index.html?s_tid=gn_logo MathWorks Homepage] &amp;amp;#124; [https://de.mathworks.com/support/?s_tid=gn_supp Support and more]&lt;br /&gt;
|-&lt;br /&gt;
| Graphical Interface&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Description =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;MATLAB&#039;&#039;&#039; (MATrix LABoratory) is a high-level programming language and interactive computing environment for numerical calculation and data visualization.&lt;br /&gt;
&lt;br /&gt;
= Loading MATLAB =&lt;br /&gt;
&lt;br /&gt;
The preferable way is to run the MATLAB command line interface without GUI:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An interactive MATLAB session with graphical user interface (GUI) can be started with the command (requires X11 forwarding enabled for your ssh login):&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Do not start a long-duration interactive MATLAB session on a login node of the cluster. Submit an [[Helix/Slurm#Interactive_Jobs | interactive job]] and start MATLAB from within the dedicated compute node assigned to you by the queueing system.&lt;br /&gt;
&lt;br /&gt;
The following generic command will execute a MATLAB script or function named &amp;quot;example&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay -batch example &amp;gt; result.out 2&amp;gt;&amp;amp;1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The output of this session will be redirected to the file result.out. The option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-batch&amp;lt;/syntaxhighlight&amp;gt; executes the MATLAB statement non-interactively.&lt;br /&gt;
&lt;br /&gt;
= Parallel Computing Using MATLAB =&lt;br /&gt;
&lt;br /&gt;
Parallelization of MATLAB jobs is realized via the built-in multi-threading provided by MATLAB&#039;s BLAS and FFT implementation and the parallel computing functionality of MATLAB&#039;s Parallel Computing Toolbox (PCT).&lt;br /&gt;
&lt;br /&gt;
== Implicit Threading ==&lt;br /&gt;
&lt;br /&gt;
A large number of built-in MATLAB functions may utilize multiple cores automatically without any code modifications required. This is referred to as implicit multi-threading and must be strictly distinguished from explicit parallelism provided by the Parallel Computing Toolbox (PCT) which requires specific commands in your code in order to create threads.&lt;br /&gt;
&lt;br /&gt;
Implicit threading particularly takes place for linear algebra operations (such as the solution to a linear system A\b or matrix products A*B) and FFT operations. Many other high-level MATLAB functions do also benefit from multi-threading capabilities of their underlying routines. If multi-threading is not desired, single-threading can be enforced by adding the command line option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-singleCompThread&amp;lt;/syntaxhighlight&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Whenever implicit threading takes place, MATLAB will detect the total number of cores that exist on a machine and by default makes use of all of them. This has very important implications for MATLAB jobs in HPC environments with shared-node job scheduling policy (i.e. with multiple users sharing one compute node). Due to this behaviour, a MATLAB job may take over more compute resources than assigned by the queueing system of the cluster (and thereby taking away these resources from all other users with running jobs on the same node - including your own jobs).&lt;br /&gt;
&lt;br /&gt;
Therefore, when running in multi-threaded mode, MATLAB always requires the user&#039;s intervention to not allocate all cores of the machine (unless requested so from the queueing system). The number of threads must be controlled from within the code by means of the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;maxNumCompThreads(N)&amp;lt;/syntaxhighlight&amp;gt; function or, alternatively, with the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;feature(&#039;numThreads&#039;, N)&amp;lt;/syntaxhighlight&amp;gt; function (which is undocumented).&lt;br /&gt;
&lt;br /&gt;
== Using the Parallel Computing Toolbox (PCT) ==&lt;br /&gt;
&lt;br /&gt;
By using the PCT one can make explicit use of several cores on multicore processors to parallelize MATLAB applications without MPI programming. Under MATLAB version 8.4 and earlier, this toolbox provides 12 workers (MATLAB computational engines) to execute applications locally on a single multicore node. Under MATLAB version 8.5 and later, the number of workers available is equal to the number of cores on a single node (up to a maximum of 512).&lt;br /&gt;
&lt;br /&gt;
If multiple PCT jobs are running at the same time, they all write temporary MATLAB job information to the same location. This race condition can cause one or more of the parallel MATLAB jobs fail to use the parallel functionality of the toolbox.&lt;br /&gt;
&lt;br /&gt;
To solve this issue, each MATLAB job should explicitly set a unique location where these files are created. This can be accomplished by the following snippet of code added to your MATLAB script.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% create a local cluster object&lt;br /&gt;
pc = parcluster(&#039;local&#039;)&lt;br /&gt;
&lt;br /&gt;
% get the number of dedicated cores from environment&lt;br /&gt;
nprocs = str2num(getenv(&#039;SLURM_NPROCS&#039;))&lt;br /&gt;
&lt;br /&gt;
% you may explicitly set the JobStorageLocation to the tmp directory that is unique to each cluster job (and is on local, fast scratch)&lt;br /&gt;
parpool_tmpdir = [getenv(&#039;TMP&#039;),&#039;/.matlab/local_cluster_jobs/slurm_jobID_&#039;,getenv(&#039;SLURM_JOB_ID&#039;)]&lt;br /&gt;
mkdir(parpool_tmpdir)&lt;br /&gt;
pc.JobStorageLocation = parpool_tmpdir&lt;br /&gt;
&lt;br /&gt;
% start the parallel pool&lt;br /&gt;
parpool(pc, nprocs)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If a large number of MATLAB-jobs are run in parallel, they can also conflict when writing generic information to &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;~/.matlab&amp;lt;/syntaxhighlight&amp;gt;. This can be circumvented by setting &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;$MATLAB_PREFDIR&amp;lt;/syntaxhighlight&amp;gt; to different directories in your Batch-script, e.g.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;export MATLAB_PREFDIR=$TMP&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using a different implementation of BLAS/LAPACK ==&lt;br /&gt;
&lt;br /&gt;
By default, Matlab uses a version of Intel MKL as its BLAS/LAPACK library. It is possible to manually change this to different libraries by setting the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;BLAS_VERSION&amp;lt;/syntaxhighlight&amp;gt; and &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;LAPACK_VERSION&amp;lt;/syntaxhighlight&amp;gt; environment variables. The following lines can be added to the batch-script to change it, in this example to BLIS and Flame, which are optimized for AMD processors: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load numlib/aocl/3.2.0&lt;br /&gt;
&lt;br /&gt;
export BLAS_VERSION=$AOCL_LIB_DIR/libblis-mt.so&lt;br /&gt;
export LAPACK_VERSION=$AOCL_LIB_DIR/libflame.so&lt;br /&gt;
&lt;br /&gt;
export BLIS_NUM_THREADS=$SLURM_NTASKS&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This can increase performance depending on the task, for example large matrix multiplications, but caution is advised.&lt;br /&gt;
&lt;br /&gt;
= General Performance Tips for MATLAB =&lt;br /&gt;
&lt;br /&gt;
MATLAB data structures (arrays or matrices) are dynamic in size, i.e. MATLAB will automatically resize the structure on demand. Although this seems to be convenient, MATLAB continually needs to allocate a new chunk of memory and copy over the data to the new block of memory as the array or matrix grows in a loop. This may take a significant amount of extra time during execution of the program.&lt;br /&gt;
&lt;br /&gt;
Code performance can often be drastically improved by pre-allocating memory for the final expected size of the array or matrix before actually starting the processing loop. In order to pre-allocate an array of strings, you can use MATLAB&#039;s build-in cell function. In order to pre-allocate an array or matrix of numbers, you can use MATLAB&#039;s build-in zeros function.&lt;br /&gt;
&lt;br /&gt;
The performance benefit of pre-allocation is illustrated with the following example code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% prealloc.m&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
num=10000000;&lt;br /&gt;
&lt;br /&gt;
disp(&#039;Without pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
for i=1:num&lt;br /&gt;
    a(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&lt;br /&gt;
disp(&#039;With pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
b=zeros(1,num);&lt;br /&gt;
for i=1:num&lt;br /&gt;
    b(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On a compute node, the result may look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Without pre-allocation:&lt;br /&gt;
Elapsed time is 2.879446 seconds.&lt;br /&gt;
With pre-allocation:&lt;br /&gt;
Elapsed time is 0.097557 seconds.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please recognize that the code runs almost 30 times faster with pre-allocation.&lt;br /&gt;
&lt;br /&gt;
== Compile MATLAB binaries with mcc ==&lt;br /&gt;
&lt;br /&gt;
MATLAB on Helix comes with a compiler, &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt;, that can be used to create binaries from MATLAB-code.&lt;br /&gt;
Stand-alone MATLAB programs compiled with &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt; do not require any license tokens at runtime and you can start jobs in parallel without any risk of running out of licences.&lt;br /&gt;
&lt;br /&gt;
=== Running compiled binaries with the MATLAB Runtime ===&lt;br /&gt;
&lt;br /&gt;
If you do not have access to a full MATLAB installation on Helix, you can still run compiled MATLAB applications using the MATLAB Runtime module:&lt;br /&gt;
&lt;br /&gt;
 module load math/matlab-runtime&lt;br /&gt;
 ./my_compiled_app&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime requires no license. To use it:&lt;br /&gt;
&lt;br /&gt;
# Compile your MATLAB code on a machine where you have a MATLAB license (e.g., your local workstation via an institute license):&lt;br /&gt;
#: &amp;lt;code&amp;gt;mcc -m my_script.m&amp;lt;/code&amp;gt;&lt;br /&gt;
# Transfer the compiled binary to Helix.&lt;br /&gt;
# Load the matching Runtime module and run:&lt;br /&gt;
#: &amp;lt;code&amp;gt;module load math/matlab-runtime/R2025b&amp;lt;/code&amp;gt;&lt;br /&gt;
#: &amp;lt;code&amp;gt;./my_script&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The Runtime version must &#039;&#039;&#039;exactly&#039;&#039;&#039; match the MATLAB version used for compilation. For example, code compiled with R2023a requires &amp;lt;code&amp;gt;math/matlab-runtime/R2023a&amp;lt;/code&amp;gt;. Available versions:&lt;br /&gt;
&lt;br /&gt;
 module avail math/matlab-runtime&lt;br /&gt;
&lt;br /&gt;
Currently installed: R2022a, R2023a, R2023b, R2024a, R2024b, R2025a, R2025b.&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime is [https://de.mathworks.com/products/compiler/matlab-runtime.html freely available from MathWorks] and can also be installed locally if needed.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15881</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15881"/>
		<updated>2026-03-24T09:47:27Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;font-size:140%;&amp;gt;&#039;&#039;&#039;Welcome to the bwHPC Wiki.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bwHPC represents services and resources in the State of &#039;&#039;&#039;B&#039;&#039;&#039;aden-&#039;&#039;&#039;W&#039;&#039;&#039;ürttemberg, Germany, for High Performance Computing (&#039;&#039;&#039;HPC&#039;&#039;&#039;), Data Intensive Computing (&#039;&#039;&#039;DIC&#039;&#039;&#039;) and Large Scale Scientific Data Management (&#039;&#039;&#039;LS2DM&#039;&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
The main bwHPC web page is at &#039;&#039;&#039;[https://www.bwhpc.de/ https://www.bwhpc.de/]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Many topics depend on the cluster system you use. &lt;br /&gt;
First choose the cluster you use,  then select the correct topic.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS START&lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]]&lt;br /&gt;
|}&lt;br /&gt;
OK/green --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#B8FFB8; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#8AFF8A; font-size:120%; text-align:left&amp;quot; | [[Status|&#039;&#039;&#039;Status:&#039;&#039;&#039; Maintenances [0] &amp;amp; Outages [0]]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- warning/yellow --&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages: BwUniCluster offline]]&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- alert/red --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
{| style=&amp;quot;  background:#FF8A8A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FF5C5C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]] (Currently: 1)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS END --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot; background:#eeeefe; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Courses / eLearning&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://training.bwhpc.de/ eLearning and Online Courses]&lt;br /&gt;
* [https://hpc-wiki.info/hpc/Introduction_to_Linux_in_HPC Introduction to Linux in HPC (external resource)]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Need Access to a Cluster?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[When to use a HPC Cluster]]&lt;br /&gt;
* [[Running Calculations]]&lt;br /&gt;
* [[Registration]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | HPC System Specific Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
bwHPC encompasses several HPC compute clusters at different universities in Baden-Württemberg. Each cluster is dedicated to [https://www.bwhpc.de/bwhpc-domains.php specific research domains]. &lt;br /&gt;
 &lt;br /&gt;
Documentation differs between compute clusters, please see cluster specific overview pages:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BwUniCluster3.0|bwUniCluster 3.0]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | General Purpose, Teaching&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BinAC2|bwForCluster BinAC 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Bioinformatics, Astrophysics, Geosciences, Pharmacy, and Medical Informatics&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot; | [[Helix|bwForCluster Helix]]&lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  |   Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[:JUSTUS2| bwForCluster JUSTUS 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Theoretical Chemistry, Condensed Matter Physics, and Quantum Sciences&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[NEMO2|bwForCluster NEMO 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Neurosciences, Particle Physics, Materials Science, and Microsystems Engineering&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|bwHPC Clusters: [https://www.bwhpc.de/cluster.php operational status] &lt;br /&gt;
Further Compute Clusters in Baden-Württemberg (separate access policies):&lt;br /&gt;
* Datenanalyse Cluster der Hochschulen (DACHS): [[DACHS | Datenanalyse Cluster der Hochschulen (DACHS)]]&lt;br /&gt;
* bwHPC tier 1: [https://kb.hlrs.de/platforms/index.php/Hunter_(HPE) Hunter] ([https://www.hlrs.de/apply-for-computing-time getting access])&lt;br /&gt;
* bwHPC tier 2: [https://www.nhr.kit.edu/userdocs/horeka HoreKa] ([https://www.nhr.kit.edu/userdocs/horeka/projects/ getting access])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Documentation valid for all Clusters&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Environment Modules| Software Modules]] and software documentation explained&lt;br /&gt;
* [https://www.bwhpc.de/software.html List of Software] on all clusters&lt;br /&gt;
* [[Development| Software Development and Parallel Programming]]&lt;br /&gt;
* [[Energy Efficient Cluster Usage]]&lt;br /&gt;
* [[HPC Glossary]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Storage&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data storage services:&lt;br /&gt;
* [[SDS@hd]]: Everyone can join existing storage projects, entitlement needed for creating your own, [https://sds-hd.urz.uni-heidelberg.de/management/shib/sds_costs.php cost sheet]&lt;br /&gt;
* [https://uni-tuebingen.de/einrichtungen/zentrum-fuer-datenverarbeitung/projekte/laufende-projekte/bwsfs bwSFS]&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://wiki.scc.kit.edu/lsdf/index.php/Category:LSDF_Online_Storage LSDF Online Storage] (only for KIT and KIT partners)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Archiving&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data archiving services:&lt;br /&gt;
* [https://www.rda.kit.edu/english bwDataArchive]: Open to all scientists at KIT and institutions in Baden-Württemberg that have signed a service agreement with KIT&lt;br /&gt;
Associated, but local archiving services for scientific data are:&lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/de/service-katalog/speicher/heiarchive heiARCHIVE] (only for members of Heidelberg University)&lt;br /&gt;
For instructions on how to move the data, depending on the offered connections, can be found under [[Data Transfer | Data Transfer]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Data Management&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Data Transfer|Data Transfer]]&lt;br /&gt;
* [https://www.forschungsdaten.org/index.php/FDM-Kontakte#Deutschland Research Data Management (RDM)] contact persons&lt;br /&gt;
* [https://www.forschungsdaten.info Portal for Research Data Management] (Forschungsdaten.info)&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[BwSupportPortal|Submit a Ticket in our Support Portal]]&lt;br /&gt;
Support is provided by the [https://www.bwhpc.de/teams.php bwHPC Competence Centers]:&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* Please [[Acknowledgement|acknowledge]] our resources in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15878</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15878"/>
		<updated>2026-03-24T09:46:37Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;font-size:140%;&amp;gt;&#039;&#039;&#039;Welcome to the bwHPC Wiki.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bwHPC represents services and resources in the State of &#039;&#039;&#039;B&#039;&#039;&#039;aden-&#039;&#039;&#039;W&#039;&#039;&#039;ürttemberg, Germany, for High Performance Computing (&#039;&#039;&#039;HPC&#039;&#039;&#039;), Data Intensive Computing (&#039;&#039;&#039;DIC&#039;&#039;&#039;) and Large Scale Scientific Data Management (&#039;&#039;&#039;LS2DM&#039;&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
The main bwHPC web page is at &#039;&#039;&#039;[https://www.bwhpc.de/ https://www.bwhpc.de/]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Many topics depend on the cluster system you use. &lt;br /&gt;
First choose the cluster you use,  then select the correct topic.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS START&lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]]&lt;br /&gt;
|}&lt;br /&gt;
OK/green --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#B8FFB8; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#8AFF8A; font-size:120%; text-align:left&amp;quot; | [[Status|&#039;&#039;&#039;Status:&#039;&#039;&#039; Maintenances [0] &amp;amp; Outages [0]]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- warning/yellow --&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages: BwUniCluster offline]]&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- alert/red --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
{| style=&amp;quot;  background:#FF8A8A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FF5C5C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]] (Currently: 1)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS END --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot; background:#eeeefe; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Courses / eLearning&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://training.bwhpc.de/ eLearning and Online Courses]&lt;br /&gt;
* [https://hpc-wiki.info/hpc/Introduction_to_Linux_in_HPC Introduction to Linux in HPC (external resource)]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Need Access to a Cluster?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[When to use a HPC Cluster]]&lt;br /&gt;
* [[Running Calculations]]&lt;br /&gt;
* [[Registration]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | HPC System Specific Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
bwHPC encompasses several HPC compute clusters at different universities in Baden-Württemberg. Each cluster is dedicated to [https://www.bwhpc.de/bwhpc-domains.php specific research domains]. &lt;br /&gt;
 &lt;br /&gt;
Documentation differs between compute clusters, please see cluster specific overview pages:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BwUniCluster3.0|bwUniCluster 3.0]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | General Purpose, Teaching&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BinAC2|bwForCluster BinAC 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Bioinformatics, Astrophysics, Geosciences, Pharmacy, and Medical Informatics&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot; | [[Helix|bwForCluster Helix]]&lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  |   Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[:JUSTUS2| bwForCluster JUSTUS 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Theoretical Chemistry, Condensed Matter Physics, and Quantum Sciences&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[NEMO2|bwForCluster NEMO 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Neurosciences, Particle Physics, Materials Science, and Microsystems Engineering&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|bwHPC Clusters: [https://www.bwhpc.de/cluster.php operational status] &lt;br /&gt;
Further Compute Clusters in Baden-Württemberg (separate access policies):&lt;br /&gt;
* Datenanalyse Cluster der Hochschulen (DACHS): [[DACHS | Datenanalyse Cluster der Hochschulen (DACHS)]]&lt;br /&gt;
* bwHPC tier 1: [https://kb.hlrs.de/platforms/index.php/Hunter_(HPE) Hunter] ([https://www.hlrs.de/apply-for-computing-time getting access])&lt;br /&gt;
* bwHPC tier 2: [https://www.nhr.kit.edu/userdocs/horeka HoreKa] ([https://www.nhr.kit.edu/userdocs/horeka/projects/ getting access])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Documentation valid for all Clusters&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Environment Modules| Software Modules]] and software documentation explained&lt;br /&gt;
* [https://www.bwhpc.de/software.html List of Software] on all clusters&lt;br /&gt;
* [[Development| Software Development and Parallel Programming]]&lt;br /&gt;
* [[Energy Efficient Cluster Usage]]&lt;br /&gt;
* [[HPC Glossary]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Storage&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data storage services:&lt;br /&gt;
* [[SDS@hd]]: Everyone can join existing storage projects, entitlement needed for creating your own, [https://sds-hd.urz.uni-heidelberg.de/management/shib/sds_costs.php cost sheet]&lt;br /&gt;
* [https://uni-tuebingen.de/einrichtungen/zentrum-fuer-datenverarbeitung/projekte/laufende-projekte/bwsfs bwSFS]&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://wiki.scc.kit.edu/lsdf/index.php/Category:LSDF_Online_Storage LSDF Online Storage] (only for KIT and KIT partners)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Archiving&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data archiving services:&lt;br /&gt;
* [https://www.rda.kit.edu/english bwDataArchive]: Open to all scientists at KIT and institutions in Baden-Württemberg that have signed a service agreement with KIT&lt;br /&gt;
Associated, but local scientific archiving services are:&lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/de/service-katalog/speicher/heiarchive heiARCHIVE] (only for members of Heidelberg University)&lt;br /&gt;
For instructions on how to move the data, depending on the offered connections, can be found under [[Data Transfer | Data Transfer]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Data Management&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Data Transfer|Data Transfer]]&lt;br /&gt;
* [https://www.forschungsdaten.org/index.php/FDM-Kontakte#Deutschland Research Data Management (RDM)] contact persons&lt;br /&gt;
* [https://www.forschungsdaten.info Portal for Research Data Management] (Forschungsdaten.info)&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[BwSupportPortal|Submit a Ticket in our Support Portal]]&lt;br /&gt;
Support is provided by the [https://www.bwhpc.de/teams.php bwHPC Competence Centers]:&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* Please [[Acknowledgement|acknowledge]] our resources in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15876</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15876"/>
		<updated>2026-03-24T09:42:27Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;font-size:140%;&amp;gt;&#039;&#039;&#039;Welcome to the bwHPC Wiki.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bwHPC represents services and resources in the State of &#039;&#039;&#039;B&#039;&#039;&#039;aden-&#039;&#039;&#039;W&#039;&#039;&#039;ürttemberg, Germany, for High Performance Computing (&#039;&#039;&#039;HPC&#039;&#039;&#039;), Data Intensive Computing (&#039;&#039;&#039;DIC&#039;&#039;&#039;) and Large Scale Scientific Data Management (&#039;&#039;&#039;LS2DM&#039;&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
The main bwHPC web page is at &#039;&#039;&#039;[https://www.bwhpc.de/ https://www.bwhpc.de/]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Many topics depend on the cluster system you use. &lt;br /&gt;
First choose the cluster you use,  then select the correct topic.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS START&lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]]&lt;br /&gt;
|}&lt;br /&gt;
OK/green --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#B8FFB8; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#8AFF8A; font-size:120%; text-align:left&amp;quot; | [[Status|&#039;&#039;&#039;Status:&#039;&#039;&#039; Maintenances [0] &amp;amp; Outages [0]]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- warning/yellow --&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages: BwUniCluster offline]]&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- alert/red --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
{| style=&amp;quot;  background:#FF8A8A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FF5C5C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]] (Currently: 1)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS END --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot; background:#eeeefe; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Courses / eLearning&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://training.bwhpc.de/ eLearning and Online Courses]&lt;br /&gt;
* [https://hpc-wiki.info/hpc/Introduction_to_Linux_in_HPC Introduction to Linux in HPC (external resource)]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Need Access to a Cluster?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[When to use a HPC Cluster]]&lt;br /&gt;
* [[Running Calculations]]&lt;br /&gt;
* [[Registration]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | HPC System Specific Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
bwHPC encompasses several HPC compute clusters at different universities in Baden-Württemberg. Each cluster is dedicated to [https://www.bwhpc.de/bwhpc-domains.php specific research domains]. &lt;br /&gt;
 &lt;br /&gt;
Documentation differs between compute clusters, please see cluster specific overview pages:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BwUniCluster3.0|bwUniCluster 3.0]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | General Purpose, Teaching&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BinAC2|bwForCluster BinAC 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Bioinformatics, Astrophysics, Geosciences, Pharmacy, and Medical Informatics&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot; | [[Helix|bwForCluster Helix]]&lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  |   Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[:JUSTUS2| bwForCluster JUSTUS 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Theoretical Chemistry, Condensed Matter Physics, and Quantum Sciences&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[NEMO2|bwForCluster NEMO 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Neurosciences, Particle Physics, Materials Science, and Microsystems Engineering&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|bwHPC Clusters: [https://www.bwhpc.de/cluster.php operational status] &lt;br /&gt;
Further Compute Clusters in Baden-Württemberg (separate access policies):&lt;br /&gt;
* Datenanalyse Cluster der Hochschulen (DACHS): [[DACHS | Datenanalyse Cluster der Hochschulen (DACHS)]]&lt;br /&gt;
* bwHPC tier 1: [https://kb.hlrs.de/platforms/index.php/Hunter_(HPE) Hunter] ([https://www.hlrs.de/apply-for-computing-time getting access])&lt;br /&gt;
* bwHPC tier 2: [https://www.nhr.kit.edu/userdocs/horeka HoreKa] ([https://www.nhr.kit.edu/userdocs/horeka/projects/ getting access])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Documentation valid for all Clusters&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Environment Modules| Software Modules]] and software documentation explained&lt;br /&gt;
* [https://www.bwhpc.de/software.html List of Software] on all clusters&lt;br /&gt;
* [[Development| Software Development and Parallel Programming]]&lt;br /&gt;
* [[Energy Efficient Cluster Usage]]&lt;br /&gt;
* [[HPC Glossary]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Storage&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data storage services:&lt;br /&gt;
* [[SDS@hd]]: Everyone can join existing storage projects, entitlement needed for creating your own, [https://sds-hd.urz.uni-heidelberg.de/management/shib/sds_costs.php cost sheet]&lt;br /&gt;
* [https://uni-tuebingen.de/einrichtungen/zentrum-fuer-datenverarbeitung/projekte/laufende-projekte/bwsfs bwSFS]&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://wiki.scc.kit.edu/lsdf/index.php/Category:LSDF_Online_Storage LSDF Online Storage] (only for KIT and KIT partners)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Archiving&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data archiving services:&lt;br /&gt;
* [https://www.rda.kit.edu/english bwDataArchive]: Open to all scientists at KIT and institutions in Baden-Württemberg that have signed a service agreement with KIT&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/de/service-katalog/speicher/heiarchive heiARCHIVE] (only for members of Heidelberg University)&lt;br /&gt;
For instructions on how to move the data, depending on the offered connections, can be found under [[Data Transfer | Data Transfer]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Data Management&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Data Transfer|Data Transfer]]&lt;br /&gt;
* [https://www.forschungsdaten.org/index.php/FDM-Kontakte#Deutschland Research Data Management (RDM)] contact persons&lt;br /&gt;
* [https://www.forschungsdaten.info Portal for Research Data Management] (Forschungsdaten.info)&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[BwSupportPortal|Submit a Ticket in our Support Portal]]&lt;br /&gt;
Support is provided by the [https://www.bwhpc.de/teams.php bwHPC Competence Centers]:&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* Please [[Acknowledgement|acknowledge]] our resources in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15875</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Main_Page&amp;diff=15875"/>
		<updated>2026-03-24T09:41:44Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;font-size:140%;&amp;gt;&#039;&#039;&#039;Welcome to the bwHPC Wiki.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
bwHPC represents services and resources in the State of &#039;&#039;&#039;B&#039;&#039;&#039;aden-&#039;&#039;&#039;W&#039;&#039;&#039;ürttemberg, Germany, for High Performance Computing (&#039;&#039;&#039;HPC&#039;&#039;&#039;), Data Intensive Computing (&#039;&#039;&#039;DIC&#039;&#039;&#039;) and Large Scale Scientific Data Management (&#039;&#039;&#039;LS2DM&#039;&#039;&#039;).&lt;br /&gt;
&lt;br /&gt;
The main bwHPC web page is at &#039;&#039;&#039;[https://www.bwhpc.de/ https://www.bwhpc.de/]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Many topics depend on the cluster system you use. &lt;br /&gt;
First choose the cluster you use,  then select the correct topic.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS START&lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]]&lt;br /&gt;
|}&lt;br /&gt;
OK/green --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#B8FFB8; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#8AFF8A; font-size:120%; text-align:left&amp;quot; | [[Status|&#039;&#039;&#039;Status:&#039;&#039;&#039; Maintenances [0] &amp;amp; Outages [0]]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- warning/yellow --&amp;gt;&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
{| style=&amp;quot;  background:#FFD28A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFC05C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages: BwUniCluster offline]]&lt;br /&gt;
|}&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- alert/red --&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
{| style=&amp;quot;  background:#FF8A8A; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FF5C5C; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | [[Status|Maintenances and Outages]] (Currently: 1)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;!-- bwHPC STATUS END --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot; background:#eeeefe; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Courses / eLearning&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://training.bwhpc.de/ eLearning and Online Courses]&lt;br /&gt;
* [https://hpc-wiki.info/hpc/Introduction_to_Linux_in_HPC Introduction to Linux in HPC (external resource)]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Need Access to a Cluster?&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[When to use a HPC Cluster]]&lt;br /&gt;
* [[Running Calculations]]&lt;br /&gt;
* [[Registration]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | HPC System Specific Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
bwHPC encompasses several HPC compute clusters at different universities in Baden-Württemberg. Each cluster is dedicated to [https://www.bwhpc.de/bwhpc-domains.php specific research domains]. &lt;br /&gt;
 &lt;br /&gt;
Documentation differs between compute clusters, please see cluster specific overview pages:&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BwUniCluster3.0|bwUniCluster 3.0]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | General Purpose, Teaching&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[BinAC2|bwForCluster BinAC 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Bioinformatics, Astrophysics, Geosciences, Pharmacy, and Medical Informatics&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot; | [[Helix|bwForCluster Helix]]&lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  |   Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[:JUSTUS2| bwForCluster JUSTUS 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Theoretical Chemistry, Condensed Matter Physics, and Quantum Sciences&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:5px; width:30%&amp;quot;  | [[NEMO2|bwForCluster NEMO 2]] &lt;br /&gt;
| style=&amp;quot;padding-left:20px;&amp;quot;  | Neurosciences, Particle Physics, Materials Science, and Microsystems Engineering&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|bwHPC Clusters: [https://www.bwhpc.de/cluster.php operational status] &lt;br /&gt;
Further Compute Clusters in Baden-Württemberg (separate access policies):&lt;br /&gt;
* Datenanalyse Cluster der Hochschulen (DACHS): [[DACHS | Datenanalyse Cluster der Hochschulen (DACHS)]]&lt;br /&gt;
* bwHPC tier 1: [https://kb.hlrs.de/platforms/index.php/Hunter_(HPE) Hunter] ([https://www.hlrs.de/apply-for-computing-time getting access])&lt;br /&gt;
* bwHPC tier 2: [https://www.nhr.kit.edu/userdocs/horeka HoreKa] ([https://www.nhr.kit.edu/userdocs/horeka/projects/ getting access])&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold; text-align:left&amp;quot; | Documentation valid for all Clusters&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Environment Modules| Software Modules]] and software documentation explained&lt;br /&gt;
* [https://www.bwhpc.de/software.html List of Software] on all clusters&lt;br /&gt;
* [[Development| Software Development and Parallel Programming]]&lt;br /&gt;
* [[Energy Efficient Cluster Usage]]&lt;br /&gt;
* [[HPC Glossary]]&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Storage&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data storage services:&lt;br /&gt;
* [[SDS@hd]]: Everyone can join existing storage projects, entitlement needed for creating your own, [https://sds-hd.urz.uni-heidelberg.de/management/shib/sds_costs.php cost sheet]&lt;br /&gt;
* [https://uni-tuebingen.de/einrichtungen/zentrum-fuer-datenverarbeitung/projekte/laufende-projekte/bwsfs bwSFS]&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://wiki.scc.kit.edu/lsdf/index.php/Category:LSDF_Online_Storage LSDF Online Storage] (only for KIT and KIT partners)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Scientific Data Archiving&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
For user guides of the scientific data archiving services:&lt;br /&gt;
* [https://www.rda.kit.edu/english bwDataArchive]: Open to all scientists at KIT and institutions in Baden-Württemberg that have signed a service agreement with KIT&lt;br /&gt;
Associated, but local scientific storage services are:&lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/de/service-katalog/speicher/heiarchive heiARCHIVE] (only for members of the University of Heidelberg)&lt;br /&gt;
For instructions on how to move the data, depending on the offered connections, can be found under [[Data Transfer | Data Transfer]].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;height:100%; background:#ffeaef; width:100%&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot;   | Data Management&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Data Transfer|Data Transfer]]&lt;br /&gt;
* [https://www.forschungsdaten.org/index.php/FDM-Kontakte#Deutschland Research Data Management (RDM)] contact persons&lt;br /&gt;
* [https://www.forschungsdaten.info Portal for Research Data Management] (Forschungsdaten.info)&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[BwSupportPortal|Submit a Ticket in our Support Portal]]&lt;br /&gt;
Support is provided by the [https://www.bwhpc.de/teams.php bwHPC Competence Centers]:&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* Please [[Acknowledgement|acknowledge]] our resources in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=15855</id>
		<title>Helix/Software/Matlab</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=15855"/>
		<updated>2026-03-20T08:46:02Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border: 2px solid #d33; background-color: #fee7e6; padding: 10px; margin-bottom: 1em; width: 100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;⚠ MATLAB modules will be removed on March 31, 2026.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The MathWorks state license (Landeslizenz) expires on March 31, 2026 and will not be renewed. After this date, the MATLAB modules under &amp;lt;code&amp;gt;math/matlab&amp;lt;/code&amp;gt; will no longer be available on Helix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Alternatives:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;GNU Octave&#039;&#039;&#039; (&amp;lt;code&amp;gt;module load math/octave&amp;lt;/code&amp;gt;): MATLAB scripts that do not use special features of toolboxes may run with Octave without or with minor changes.&lt;br /&gt;
* &#039;&#039;&#039;Matlab Compiler / Matlab Runtime&#039;&#039;&#039;: Use the [https://de.mathworks.com/products/compiler.html MATLAB Compiler] to build stand-alone binaries on your local computer (with your own license) and run them with the MATLAB Runtime on the cluster — no license required at runtime (see section &amp;quot;Compile MATLAB binaries with mcc&amp;quot; below).&lt;br /&gt;
* &#039;&#039;&#039;Institute license&#039;&#039;&#039;: If your institute has its own MathWorks network license, it may be possible to use it from the cluster. This must be checked on a case-by-case basis — please [https://www.bwhpc.de/supportportal.php submit a ticket].&lt;br /&gt;
* Other alternatives: &amp;lt;code&amp;gt;math/julia&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;math/R&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;devel/python&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Softwarepage|math/matlab}}&lt;br /&gt;
&lt;br /&gt;
{| width=600px class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Description !! Content&lt;br /&gt;
|-&lt;br /&gt;
| module load&lt;br /&gt;
| math/matlab&lt;br /&gt;
|-&lt;br /&gt;
| License&lt;br /&gt;
| [https://de.mathworks.com/pricing-licensing/index.html?intendeduse=edu&amp;amp;prodcode=ML Academic License/Commercial]&lt;br /&gt;
|-&lt;br /&gt;
| Citing&lt;br /&gt;
| n/a&lt;br /&gt;
|-&lt;br /&gt;
| Links&lt;br /&gt;
| [https://de.mathworks.com/products/matlab/ MATLAB Homepage] &amp;amp;#124; [https://de.mathworks.com/index.html?s_tid=gn_logo MathWorks Homepage] &amp;amp;#124; [https://de.mathworks.com/support/?s_tid=gn_supp Support and more]&lt;br /&gt;
|-&lt;br /&gt;
| Graphical Interface&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Description =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;MATLAB&#039;&#039;&#039; (MATrix LABoratory) is a high-level programming language and interactive computing environment for numerical calculation and data visualization.&lt;br /&gt;
&lt;br /&gt;
= Loading MATLAB =&lt;br /&gt;
&lt;br /&gt;
The preferable way is to run the MATLAB command line interface without GUI:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An interactive MATLAB session with graphical user interface (GUI) can be started with the command (requires X11 forwarding enabled for your ssh login):&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Do not start a long-duration interactive MATLAB session on a login node of the cluster. Submit an [[Helix/Slurm#Interactive_Jobs | interactive job]] and start MATLAB from within the dedicated compute node assigned to you by the queueing system.&lt;br /&gt;
&lt;br /&gt;
The following generic command will execute a MATLAB script or function named &amp;quot;example&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay -batch example &amp;gt; result.out 2&amp;gt;&amp;amp;1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The output of this session will be redirected to the file result.out. The option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-batch&amp;lt;/syntaxhighlight&amp;gt; executes the MATLAB statement non-interactively.&lt;br /&gt;
&lt;br /&gt;
= Parallel Computing Using MATLAB =&lt;br /&gt;
&lt;br /&gt;
Parallelization of MATLAB jobs is realized via the built-in multi-threading provided by MATLAB&#039;s BLAS and FFT implementation and the parallel computing functionality of MATLAB&#039;s Parallel Computing Toolbox (PCT).&lt;br /&gt;
&lt;br /&gt;
== Implicit Threading ==&lt;br /&gt;
&lt;br /&gt;
A large number of built-in MATLAB functions may utilize multiple cores automatically without any code modifications required. This is referred to as implicit multi-threading and must be strictly distinguished from explicit parallelism provided by the Parallel Computing Toolbox (PCT) which requires specific commands in your code in order to create threads.&lt;br /&gt;
&lt;br /&gt;
Implicit threading particularly takes place for linear algebra operations (such as the solution to a linear system A\b or matrix products A*B) and FFT operations. Many other high-level MATLAB functions do also benefit from multi-threading capabilities of their underlying routines. If multi-threading is not desired, single-threading can be enforced by adding the command line option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-singleCompThread&amp;lt;/syntaxhighlight&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Whenever implicit threading takes place, MATLAB will detect the total number of cores that exist on a machine and by default makes use of all of them. This has very important implications for MATLAB jobs in HPC environments with shared-node job scheduling policy (i.e. with multiple users sharing one compute node). Due to this behaviour, a MATLAB job may take over more compute resources than assigned by the queueing system of the cluster (and thereby taking away these resources from all other users with running jobs on the same node - including your own jobs).&lt;br /&gt;
&lt;br /&gt;
Therefore, when running in multi-threaded mode, MATLAB always requires the user&#039;s intervention to not allocate all cores of the machine (unless requested so from the queueing system). The number of threads must be controlled from within the code by means of the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;maxNumCompThreads(N)&amp;lt;/syntaxhighlight&amp;gt; function or, alternatively, with the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;feature(&#039;numThreads&#039;, N)&amp;lt;/syntaxhighlight&amp;gt; function (which is undocumented).&lt;br /&gt;
&lt;br /&gt;
== Using the Parallel Computing Toolbox (PCT) ==&lt;br /&gt;
&lt;br /&gt;
By using the PCT one can make explicit use of several cores on multicore processors to parallelize MATLAB applications without MPI programming. Under MATLAB version 8.4 and earlier, this toolbox provides 12 workers (MATLAB computational engines) to execute applications locally on a single multicore node. Under MATLAB version 8.5 and later, the number of workers available is equal to the number of cores on a single node (up to a maximum of 512).&lt;br /&gt;
&lt;br /&gt;
If multiple PCT jobs are running at the same time, they all write temporary MATLAB job information to the same location. This race condition can cause one or more of the parallel MATLAB jobs fail to use the parallel functionality of the toolbox.&lt;br /&gt;
&lt;br /&gt;
To solve this issue, each MATLAB job should explicitly set a unique location where these files are created. This can be accomplished by the following snippet of code added to your MATLAB script.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% create a local cluster object&lt;br /&gt;
pc = parcluster(&#039;local&#039;)&lt;br /&gt;
&lt;br /&gt;
% get the number of dedicated cores from environment&lt;br /&gt;
nprocs = str2num(getenv(&#039;SLURM_NPROCS&#039;))&lt;br /&gt;
&lt;br /&gt;
% you may explicitly set the JobStorageLocation to the tmp directory that is unique to each cluster job (and is on local, fast scratch)&lt;br /&gt;
parpool_tmpdir = [getenv(&#039;TMP&#039;),&#039;/.matlab/local_cluster_jobs/slurm_jobID_&#039;,getenv(&#039;SLURM_JOB_ID&#039;)]&lt;br /&gt;
mkdir(parpool_tmpdir)&lt;br /&gt;
pc.JobStorageLocation = parpool_tmpdir&lt;br /&gt;
&lt;br /&gt;
% start the parallel pool&lt;br /&gt;
parpool(pc, nprocs)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If a large number of MATLAB-jobs are run in parallel, they can also conflict when writing generic information to &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;~/.matlab&amp;lt;/syntaxhighlight&amp;gt;. This can be circumvented by setting &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;$MATLAB_PREFDIR&amp;lt;/syntaxhighlight&amp;gt; to different directories in your Batch-script, e.g.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;export MATLAB_PREFDIR=$TMP&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using a different implementation of BLAS/LAPACK ==&lt;br /&gt;
&lt;br /&gt;
By default, Matlab uses a version of Intel MKL as its BLAS/LAPACK library. It is possible to manually change this to different libraries by setting the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;BLAS_VERSION&amp;lt;/syntaxhighlight&amp;gt; and &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;LAPACK_VERSION&amp;lt;/syntaxhighlight&amp;gt; environment variables. The following lines can be added to the batch-script to change it, in this example to BLIS and Flame, which are optimized for AMD processors: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load numlib/aocl/3.2.0&lt;br /&gt;
&lt;br /&gt;
export BLAS_VERSION=$AOCL_LIB_DIR/libblis-mt.so&lt;br /&gt;
export LAPACK_VERSION=$AOCL_LIB_DIR/libflame.so&lt;br /&gt;
&lt;br /&gt;
export BLIS_NUM_THREADS=$SLURM_NTASKS&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This can increase performance depending on the task, for example large matrix multiplications, but caution is advised.&lt;br /&gt;
&lt;br /&gt;
= General Performance Tips for MATLAB =&lt;br /&gt;
&lt;br /&gt;
MATLAB data structures (arrays or matrices) are dynamic in size, i.e. MATLAB will automatically resize the structure on demand. Although this seems to be convenient, MATLAB continually needs to allocate a new chunk of memory and copy over the data to the new block of memory as the array or matrix grows in a loop. This may take a significant amount of extra time during execution of the program.&lt;br /&gt;
&lt;br /&gt;
Code performance can often be drastically improved by pre-allocating memory for the final expected size of the array or matrix before actually starting the processing loop. In order to pre-allocate an array of strings, you can use MATLAB&#039;s build-in cell function. In order to pre-allocate an array or matrix of numbers, you can use MATLAB&#039;s build-in zeros function.&lt;br /&gt;
&lt;br /&gt;
The performance benefit of pre-allocation is illustrated with the following example code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% prealloc.m&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
num=10000000;&lt;br /&gt;
&lt;br /&gt;
disp(&#039;Without pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
for i=1:num&lt;br /&gt;
    a(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&lt;br /&gt;
disp(&#039;With pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
b=zeros(1,num);&lt;br /&gt;
for i=1:num&lt;br /&gt;
    b(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On a compute node, the result may look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Without pre-allocation:&lt;br /&gt;
Elapsed time is 2.879446 seconds.&lt;br /&gt;
With pre-allocation:&lt;br /&gt;
Elapsed time is 0.097557 seconds.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please recognize that the code runs almost 30 times faster with pre-allocation.&lt;br /&gt;
&lt;br /&gt;
== Compile MATLAB binaries with mcc ==&lt;br /&gt;
&lt;br /&gt;
MATLAB on Helix comes with a compiler, &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt;, that can be used to create binaries from MATLAB-code.&lt;br /&gt;
Stand-alone MATLAB programs compiled with &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt; do not require any license tokens at runtime and you can start jobs in parallel without any risk of running out of licences.&lt;br /&gt;
&lt;br /&gt;
=== Running compiled binaries with the MATLAB Runtime ===&lt;br /&gt;
&lt;br /&gt;
If you do not have access to a full MATLAB installation on Helix, you can still run compiled MATLAB applications using the MATLAB Runtime module:&lt;br /&gt;
&lt;br /&gt;
 module load math/matlab-runtime&lt;br /&gt;
 ./my_compiled_app&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime requires no license. To use it:&lt;br /&gt;
&lt;br /&gt;
# Compile your MATLAB code on a machine where you have a MATLAB license (e.g., your local workstation via an institute license):&lt;br /&gt;
#: &amp;lt;code&amp;gt;mcc -m my_script.m&amp;lt;/code&amp;gt;&lt;br /&gt;
# Transfer the compiled binary to Helix.&lt;br /&gt;
# Load the matching Runtime module and run:&lt;br /&gt;
#: &amp;lt;code&amp;gt;module load math/matlab-runtime/R2025a&amp;lt;/code&amp;gt;&lt;br /&gt;
#: &amp;lt;code&amp;gt;./my_script&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The Runtime version must &#039;&#039;&#039;exactly&#039;&#039;&#039; match the MATLAB version used for compilation. For example, code compiled with R2023a requires &amp;lt;code&amp;gt;math/matlab-runtime/R2023a&amp;lt;/code&amp;gt;. Available versions:&lt;br /&gt;
&lt;br /&gt;
 module avail math/matlab-runtime&lt;br /&gt;
&lt;br /&gt;
Currently installed: R2022a, R2023a, R2024a, R2025a.&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime is [https://de.mathworks.com/products/compiler/matlab-runtime.html freely available from MathWorks] and can also be installed locally if needed.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=15794</id>
		<title>Helix/Software/Matlab</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/Software/Matlab&amp;diff=15794"/>
		<updated>2026-03-05T20:41:41Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;border: 2px solid #d33; background-color: #fee7e6; padding: 10px; margin-bottom: 1em; width: 100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;⚠ MATLAB modules will be removed on March 31, 2026.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The MathWorks state license (Landeslizenz) expires on March 31, 2026 and will not be renewed. After this date, the MATLAB modules under &amp;lt;code&amp;gt;math/matlab&amp;lt;/code&amp;gt; will no longer be available on Helix.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Alternatives:&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;GNU Octave&#039;&#039;&#039; (&amp;lt;code&amp;gt;module load math/octave&amp;lt;/code&amp;gt;): MATLAB scripts that do not use special features of toolboxes may run with Octave without or with minor changes.&lt;br /&gt;
* &#039;&#039;&#039;Matlab Compiler / Matlab Runtime&#039;&#039;&#039;: Use the [https://de.mathworks.com/products/compiler.html MATLAB Compiler] to build stand-alone binaries on your local computer and run them with the MATLAB Runtime on the cluster — no license required at runtime (see section &amp;quot;Compile MATLAB binaries with mcc&amp;quot; below).&lt;br /&gt;
* &#039;&#039;&#039;Institute license&#039;&#039;&#039;: If your institute has its own MathWorks network license, it may be possible to use it from the cluster. This must be checked on a case-by-case basis — please [https://www.bwhpc.de/supportportal.php submit a ticket].&lt;br /&gt;
* Other alternatives: &amp;lt;code&amp;gt;math/julia&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;math/R&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;devel/python&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Softwarepage|math/matlab}}&lt;br /&gt;
&lt;br /&gt;
{| width=600px class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Description !! Content&lt;br /&gt;
|-&lt;br /&gt;
| module load&lt;br /&gt;
| math/matlab&lt;br /&gt;
|-&lt;br /&gt;
| License&lt;br /&gt;
| [https://de.mathworks.com/pricing-licensing/index.html?intendeduse=edu&amp;amp;prodcode=ML Academic License/Commercial]&lt;br /&gt;
|-&lt;br /&gt;
| Citing&lt;br /&gt;
| n/a&lt;br /&gt;
|-&lt;br /&gt;
| Links&lt;br /&gt;
| [https://de.mathworks.com/products/matlab/ MATLAB Homepage] &amp;amp;#124; [https://de.mathworks.com/index.html?s_tid=gn_logo MathWorks Homepage] &amp;amp;#124; [https://de.mathworks.com/support/?s_tid=gn_supp Support and more]&lt;br /&gt;
|-&lt;br /&gt;
| Graphical Interface&lt;br /&gt;
| No&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Description =&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;MATLAB&#039;&#039;&#039; (MATrix LABoratory) is a high-level programming language and interactive computing environment for numerical calculation and data visualization.&lt;br /&gt;
&lt;br /&gt;
= Loading MATLAB =&lt;br /&gt;
&lt;br /&gt;
The preferable way is to run the MATLAB command line interface without GUI:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An interactive MATLAB session with graphical user interface (GUI) can be started with the command (requires X11 forwarding enabled for your ssh login):&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Do not start a long-duration interactive MATLAB session on a login node of the cluster. Submit an [[Helix/Slurm#Interactive_Jobs | interactive job]] and start MATLAB from within the dedicated compute node assigned to you by the queueing system.&lt;br /&gt;
&lt;br /&gt;
The following generic command will execute a MATLAB script or function named &amp;quot;example&amp;quot;:&lt;br /&gt;
&amp;lt;pre&amp;gt;$ matlab -nodisplay -batch example &amp;gt; result.out 2&amp;gt;&amp;amp;1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The output of this session will be redirected to the file result.out. The option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-batch&amp;lt;/syntaxhighlight&amp;gt; executes the MATLAB statement non-interactively.&lt;br /&gt;
&lt;br /&gt;
= Parallel Computing Using MATLAB =&lt;br /&gt;
&lt;br /&gt;
Parallelization of MATLAB jobs is realized via the built-in multi-threading provided by MATLAB&#039;s BLAS and FFT implementation and the parallel computing functionality of MATLAB&#039;s Parallel Computing Toolbox (PCT).&lt;br /&gt;
&lt;br /&gt;
== Implicit Threading ==&lt;br /&gt;
&lt;br /&gt;
A large number of built-in MATLAB functions may utilize multiple cores automatically without any code modifications required. This is referred to as implicit multi-threading and must be strictly distinguished from explicit parallelism provided by the Parallel Computing Toolbox (PCT) which requires specific commands in your code in order to create threads.&lt;br /&gt;
&lt;br /&gt;
Implicit threading particularly takes place for linear algebra operations (such as the solution to a linear system A\b or matrix products A*B) and FFT operations. Many other high-level MATLAB functions do also benefit from multi-threading capabilities of their underlying routines. If multi-threading is not desired, single-threading can be enforced by adding the command line option &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;-singleCompThread&amp;lt;/syntaxhighlight&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Whenever implicit threading takes place, MATLAB will detect the total number of cores that exist on a machine and by default makes use of all of them. This has very important implications for MATLAB jobs in HPC environments with shared-node job scheduling policy (i.e. with multiple users sharing one compute node). Due to this behaviour, a MATLAB job may take over more compute resources than assigned by the queueing system of the cluster (and thereby taking away these resources from all other users with running jobs on the same node - including your own jobs).&lt;br /&gt;
&lt;br /&gt;
Therefore, when running in multi-threaded mode, MATLAB always requires the user&#039;s intervention to not allocate all cores of the machine (unless requested so from the queueing system). The number of threads must be controlled from within the code by means of the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;maxNumCompThreads(N)&amp;lt;/syntaxhighlight&amp;gt; function or, alternatively, with the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;feature(&#039;numThreads&#039;, N)&amp;lt;/syntaxhighlight&amp;gt; function (which is undocumented).&lt;br /&gt;
&lt;br /&gt;
== Using the Parallel Computing Toolbox (PCT) ==&lt;br /&gt;
&lt;br /&gt;
By using the PCT one can make explicit use of several cores on multicore processors to parallelize MATLAB applications without MPI programming. Under MATLAB version 8.4 and earlier, this toolbox provides 12 workers (MATLAB computational engines) to execute applications locally on a single multicore node. Under MATLAB version 8.5 and later, the number of workers available is equal to the number of cores on a single node (up to a maximum of 512).&lt;br /&gt;
&lt;br /&gt;
If multiple PCT jobs are running at the same time, they all write temporary MATLAB job information to the same location. This race condition can cause one or more of the parallel MATLAB jobs fail to use the parallel functionality of the toolbox.&lt;br /&gt;
&lt;br /&gt;
To solve this issue, each MATLAB job should explicitly set a unique location where these files are created. This can be accomplished by the following snippet of code added to your MATLAB script.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% create a local cluster object&lt;br /&gt;
pc = parcluster(&#039;local&#039;)&lt;br /&gt;
&lt;br /&gt;
% get the number of dedicated cores from environment&lt;br /&gt;
nprocs = str2num(getenv(&#039;SLURM_NPROCS&#039;))&lt;br /&gt;
&lt;br /&gt;
% you may explicitly set the JobStorageLocation to the tmp directory that is unique to each cluster job (and is on local, fast scratch)&lt;br /&gt;
parpool_tmpdir = [getenv(&#039;TMP&#039;),&#039;/.matlab/local_cluster_jobs/slurm_jobID_&#039;,getenv(&#039;SLURM_JOB_ID&#039;)]&lt;br /&gt;
mkdir(parpool_tmpdir)&lt;br /&gt;
pc.JobStorageLocation = parpool_tmpdir&lt;br /&gt;
&lt;br /&gt;
% start the parallel pool&lt;br /&gt;
parpool(pc, nprocs)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If a large number of MATLAB-jobs are run in parallel, they can also conflict when writing generic information to &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;~/.matlab&amp;lt;/syntaxhighlight&amp;gt;. This can be circumvented by setting &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;$MATLAB_PREFDIR&amp;lt;/syntaxhighlight&amp;gt; to different directories in your Batch-script, e.g.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;export MATLAB_PREFDIR=$TMP&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using a different implementation of BLAS/LAPACK ==&lt;br /&gt;
&lt;br /&gt;
By default, Matlab uses a version of Intel MKL as its BLAS/LAPACK library. It is possible to manually change this to different libraries by setting the &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;BLAS_VERSION&amp;lt;/syntaxhighlight&amp;gt; and &amp;lt;syntaxhighlight style=&amp;quot;border:0px&amp;quot; inline=1&amp;gt;LAPACK_VERSION&amp;lt;/syntaxhighlight&amp;gt; environment variables. The following lines can be added to the batch-script to change it, in this example to BLIS and Flame, which are optimized for AMD processors: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
module load numlib/aocl/3.2.0&lt;br /&gt;
&lt;br /&gt;
export BLAS_VERSION=$AOCL_LIB_DIR/libblis-mt.so&lt;br /&gt;
export LAPACK_VERSION=$AOCL_LIB_DIR/libflame.so&lt;br /&gt;
&lt;br /&gt;
export BLIS_NUM_THREADS=$SLURM_NTASKS&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This can increase performance depending on the task, for example large matrix multiplications, but caution is advised.&lt;br /&gt;
&lt;br /&gt;
= General Performance Tips for MATLAB =&lt;br /&gt;
&lt;br /&gt;
MATLAB data structures (arrays or matrices) are dynamic in size, i.e. MATLAB will automatically resize the structure on demand. Although this seems to be convenient, MATLAB continually needs to allocate a new chunk of memory and copy over the data to the new block of memory as the array or matrix grows in a loop. This may take a significant amount of extra time during execution of the program.&lt;br /&gt;
&lt;br /&gt;
Code performance can often be drastically improved by pre-allocating memory for the final expected size of the array or matrix before actually starting the processing loop. In order to pre-allocate an array of strings, you can use MATLAB&#039;s build-in cell function. In order to pre-allocate an array or matrix of numbers, you can use MATLAB&#039;s build-in zeros function.&lt;br /&gt;
&lt;br /&gt;
The performance benefit of pre-allocation is illustrated with the following example code.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
% prealloc.m&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
num=10000000;&lt;br /&gt;
&lt;br /&gt;
disp(&#039;Without pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
for i=1:num&lt;br /&gt;
    a(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&lt;br /&gt;
disp(&#039;With pre-allocation:&#039;)&lt;br /&gt;
tic&lt;br /&gt;
b=zeros(1,num);&lt;br /&gt;
for i=1:num&lt;br /&gt;
    b(i)=i;&lt;br /&gt;
end&lt;br /&gt;
toc&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On a compute node, the result may look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Without pre-allocation:&lt;br /&gt;
Elapsed time is 2.879446 seconds.&lt;br /&gt;
With pre-allocation:&lt;br /&gt;
Elapsed time is 0.097557 seconds.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please recognize that the code runs almost 30 times faster with pre-allocation.&lt;br /&gt;
&lt;br /&gt;
== Compile MATLAB binaries with mcc ==&lt;br /&gt;
&lt;br /&gt;
MATLAB on Helix comes with a compiler, &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt;, that can be used to create binaries from MATLAB-code.&lt;br /&gt;
Stand-alone MATLAB programs compiled with &amp;lt;code&amp;gt;mcc&amp;lt;/code&amp;gt; do not require any license tokens at runtime and you can start jobs in parallel without any risk of running out of licences.&lt;br /&gt;
&lt;br /&gt;
=== Running compiled binaries with the MATLAB Runtime ===&lt;br /&gt;
&lt;br /&gt;
If you do not have access to a full MATLAB installation on Helix, you can still run compiled MATLAB applications using the MATLAB Runtime module:&lt;br /&gt;
&lt;br /&gt;
 module load math/matlab-runtime&lt;br /&gt;
 ./my_compiled_app&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime requires no license. To use it:&lt;br /&gt;
&lt;br /&gt;
# Compile your MATLAB code on a machine where you have a MATLAB license (e.g., your local workstation via an institute license):&lt;br /&gt;
#: &amp;lt;code&amp;gt;mcc -m my_script.m&amp;lt;/code&amp;gt;&lt;br /&gt;
# Transfer the compiled binary to Helix.&lt;br /&gt;
# Load the matching Runtime module and run:&lt;br /&gt;
#: &amp;lt;code&amp;gt;module load math/matlab-runtime/R2025a&amp;lt;/code&amp;gt;&lt;br /&gt;
#: &amp;lt;code&amp;gt;./my_script&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039; The Runtime version must &#039;&#039;&#039;exactly&#039;&#039;&#039; match the MATLAB version used for compilation. For example, code compiled with R2023a requires &amp;lt;code&amp;gt;math/matlab-runtime/R2023a&amp;lt;/code&amp;gt;. Available versions:&lt;br /&gt;
&lt;br /&gt;
 module avail math/matlab-runtime&lt;br /&gt;
&lt;br /&gt;
Currently installed: R2022a, R2023a, R2024a, R2025a.&lt;br /&gt;
&lt;br /&gt;
The MATLAB Runtime is [https://de.mathworks.com/products/compiler/matlab-runtime.html freely available from MathWorks] and can also be installed locally if needed.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15403</id>
		<title>SDS@hd</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15403"/>
		<updated>2025-11-12T19:44:20Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:sds-hd-logo.png|350px]]&lt;br /&gt;
&lt;br /&gt;
SDS@hd is a central service for securely storing scientific data (Scientific Data Storage). The service is provided as a state service to researchers of higher education institutions of Baden-Württemberg. It is intended to be used for data that is frequently accessed (&#039;hot data&#039;).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* November 2022: No special entitlement is needed anymore to participate in an existing storage project.&lt;br /&gt;
* September 2023: Service has now been opened for DFN AAI &amp;amp; eduGAIN federation members to participate on existing storage projects.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/storage/sdshd-scientific-data-storage Service description &amp;amp; FAQ]&lt;br /&gt;
* [mailto:sds-hd-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#ffeaef; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[SDS@hd/Registration|Registration]]&lt;br /&gt;
* [[SDS@hd/Access|Access]]&lt;br /&gt;
* [[SDS@hd/Security|Data Security]]&lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive data analysis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Storage Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[SDS@hd/Acknowledgement|acknowledge]] SDS@hd in your publications.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15402</id>
		<title>Helix</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15402"/>
		<updated>2025-11-12T19:44:00Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Helix-logo.png|300px]]&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;bwForCluster Helix&#039;&#039;&#039; is dedicated to research in the bwHPC domains Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
&amp;lt;!--* August 2022: Start of bwForCluster Helix--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Oktober 2023: Extension with additional compute nodes: 84x cpu nodes and 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* April 2024: Extension with additional compute nodes: 23x cpu nodes--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Job monitoring portal: https://helix-monitoring.bwservices.uni-heidelberg.de--&amp;gt;&lt;br /&gt;
&amp;lt;!--* July 2024: Cluster extension with 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 1. October 2024: Cluster Maintenance--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 17.06.2025 08:00h - 18.06.2025 18:00h: &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Cluster Maintenance&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
* June 2025: [https://www.bwhpc.de/897.php Important notice regarding the use of MathWorks products]&lt;br /&gt;
* April 2025: Cluster extension with 3x gpu8 nodes (Nvidia H200)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[Helix/Getting Started|Getting Started]]&lt;br /&gt;
* E-Learning Course [https://training.bwhpc.de/goto.php/crs/695 Introduction to bwForCluster Helix]&lt;br /&gt;
&amp;lt;!--* [[Helix/Migration Guide|Migration Guide for users of bwForCluster MLS&amp;amp;WISO]]--&amp;gt;&lt;br /&gt;
* [https://www.bwhpc.de/supportportal.php Submit a Ticket] to support unit &#039;bwHPC - Support &amp;gt; bwForCluster Helix&#039;&lt;br /&gt;
&amp;lt;!--* [[Helix/ChangeLog|ChangeLog]]--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Registration/bwForCluster|Registration]] ([[Registration/bwForCluster/RV/Management|RV Management]])&lt;br /&gt;
* [[Helix/Login|Login]]&lt;br /&gt;
* [[Helix/Hardware|Hardware and Architecture]]&lt;br /&gt;
* [[Helix/Filesystems|File Systems and Workspaces]] &lt;br /&gt;
* [[Helix/Software|Cluster Specific Software]]&lt;br /&gt;
* [[Helix/Slurm|Batch System (Slurm)]] &lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive applications&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Cluster Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/Acknowledgement|acknowledge]] the cluster in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15401</id>
		<title>Helix/bwVisu</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15401"/>
		<updated>2025-11-12T19:43:43Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:BwVisu wide.svg|300px]]&lt;br /&gt;
&lt;br /&gt;
[https://bwvisu.bwservices.uni-heidelberg.de/ bwVisu] is a scalable service for remote visualization and interactive applications. This easy-to-use, web-based platform provides interactive access to scientific work environments utilizing massive compute and storage resources.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* December 2024: The [https://bwvisu.bwservices.uni-heidelberg.de/ new bwVisu version] based on Open OnDemand is now in operation. You can write feedback to [mailto:bwvisu-support@urz.uni-heidelberg.de bwvisu-support].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/software-and-applications/bwvisu Service Description &amp;amp;amp; FAQ]&lt;br /&gt;
* [mailto:bwvisu-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left;&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [https://bwvisu.bwservices.uni-heidelberg.de/ &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt; Link to Webservice&amp;lt;/span&amp;gt;]&lt;br /&gt;
* [[Helix/bwVisu/Getting_Started|Getting Started]]&lt;br /&gt;
* [[Helix/bwVisu/Usage|Usage]]&lt;br /&gt;
* Available applications and user guides:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; margin-left: 30px;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold;&amp;quot;&lt;br /&gt;
! Application&lt;br /&gt;
! [[Helix/bwVisu/Usage#noVNC_Applications|noVNC App]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/CryoSPARC|CryoSPARC]]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://imagej.net/software/fiji/ Fiji]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.ilastik.org/ Ilastik]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://bio3d.colorado.edu/imod/ IMOD]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://docs.mitk.org/2024.12/UserManualPortal.html MITK]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://phy.readthedocs.io/en/latest/ Phy]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qgis.org/ QGIS]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qupath.readthedocs.io/en/stable/index.html QuPath]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/JupyterLab|JupyterLab]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/RStudio|RStudio]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/KI-Morph|KI-Morph]]&lt;br /&gt;
| ☓&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/bwVisu/Acknowledgement|acknowledge]] bwVisu in your publications&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15380</id>
		<title>Helix/bwVisu</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15380"/>
		<updated>2025-11-04T09:54:04Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:BwVisu wide.svg|300px]]&lt;br /&gt;
&lt;br /&gt;
[https://bwvisu.bwservices.uni-heidelberg.de/ bwVisu] is a scalable service for remote visualization and interactive applications. This easy-to-use, web-based platform provides interactive access to scientific work environments utilizing massive compute and storage resources.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* December 2024: The [https://bwvisu.bwservices.uni-heidelberg.de/ new bwVisu version] based on Open OnDemand is now in operation. You can write feedback to [mailto:bwvisu-support@urz.uni-heidelberg.de bwvisu-support].&lt;br /&gt;
* &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;8. November 2025: Maintenance 8 am - 8 pm&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/software-and-applications/bwvisu Service Description &amp;amp;amp; FAQ]&lt;br /&gt;
* [mailto:bwvisu-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left;&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [https://bwvisu.bwservices.uni-heidelberg.de/ &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt; Link to Webservice&amp;lt;/span&amp;gt;]&lt;br /&gt;
* [[Helix/bwVisu/Getting_Started|Getting Started]]&lt;br /&gt;
* [[Helix/bwVisu/Usage|Usage]]&lt;br /&gt;
* Available applications and user guides:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; margin-left: 30px;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold;&amp;quot;&lt;br /&gt;
! Application&lt;br /&gt;
! [[Helix/bwVisu/Usage#noVNC_Applications|noVNC App]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/CryoSPARC|CryoSPARC]]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://imagej.net/software/fiji/ Fiji]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.ilastik.org/ Ilastik]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://bio3d.colorado.edu/imod/ IMOD]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://docs.mitk.org/2024.12/UserManualPortal.html MITK]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://phy.readthedocs.io/en/latest/ Phy]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qgis.org/ QGIS]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qupath.readthedocs.io/en/stable/index.html QuPath]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/JupyterLab|JupyterLab]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/RStudio|RStudio]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/KI-Morph|KI-Morph]]&lt;br /&gt;
| ☓&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/bwVisu/Acknowledgement|acknowledge]] bwVisu in your publications&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15379</id>
		<title>Helix/bwVisu</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=15379"/>
		<updated>2025-11-04T09:53:56Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:BwVisu wide.svg|300px]]&lt;br /&gt;
&lt;br /&gt;
[https://bwvisu.bwservices.uni-heidelberg.de/ bwVisu] is a scalable service for remote visualization and interactive applications. This easy-to-use, web-based platform provides interactive access to scientific work environments utilizing massive compute and storage resources.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* December 2024: The [https://bwvisu.bwservices.uni-heidelberg.de/ new bwVisu version] based on Open OnDemand is now in operation. You can write feedback to [mailto:bwvisu-support@urz.uni-heidelberg.de bwvisu-support].&lt;br /&gt;
* * &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;8. November 2025: Maintenance 8 am - 8 pm&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/software-and-applications/bwvisu Service Description &amp;amp;amp; FAQ]&lt;br /&gt;
* [mailto:bwvisu-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left;&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [https://bwvisu.bwservices.uni-heidelberg.de/ &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt; Link to Webservice&amp;lt;/span&amp;gt;]&lt;br /&gt;
* [[Helix/bwVisu/Getting_Started|Getting Started]]&lt;br /&gt;
* [[Helix/bwVisu/Usage|Usage]]&lt;br /&gt;
* Available applications and user guides:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; margin-left: 30px;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold;&amp;quot;&lt;br /&gt;
! Application&lt;br /&gt;
! [[Helix/bwVisu/Usage#noVNC_Applications|noVNC App]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/CryoSPARC|CryoSPARC]]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://imagej.net/software/fiji/ Fiji]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.ilastik.org/ Ilastik]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://bio3d.colorado.edu/imod/ IMOD]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://docs.mitk.org/2024.12/UserManualPortal.html MITK]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://phy.readthedocs.io/en/latest/ Phy]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qgis.org/ QGIS]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qupath.readthedocs.io/en/stable/index.html QuPath]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/JupyterLab|JupyterLab]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/RStudio|RStudio]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/KI-Morph|KI-Morph]]&lt;br /&gt;
| ☓&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/bwVisu/Acknowledgement|acknowledge]] bwVisu in your publications&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15378</id>
		<title>SDS@hd</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15378"/>
		<updated>2025-11-04T09:53:31Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:sds-hd-logo.png|350px]]&lt;br /&gt;
&lt;br /&gt;
SDS@hd is a central service for securely storing scientific data (Scientific Data Storage). The service is provided as a state service to researchers of higher education institutions of Baden-Württemberg. It is intended to be used for data that is frequently accessed (&#039;hot data&#039;).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* November 2022: No special entitlement is needed anymore to participate in an existing storage project.&lt;br /&gt;
* September 2023: Service has now been opened for DFN AAI &amp;amp; eduGAIN federation members to participate on existing storage projects.&lt;br /&gt;
* &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;8. November 2025: Maintenance 8 am - 8 pm&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/storage/sdshd-scientific-data-storage Service description &amp;amp; FAQ]&lt;br /&gt;
* [mailto:sds-hd-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#ffeaef; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[SDS@hd/Registration|Registration]]&lt;br /&gt;
* [[SDS@hd/Access|Access]]&lt;br /&gt;
* [[SDS@hd/Security|Data Security]]&lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive data analysis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Storage Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[SDS@hd/Acknowledgement|acknowledge]] SDS@hd in your publications.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15377</id>
		<title>Helix</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15377"/>
		<updated>2025-11-04T09:53:11Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Helix-logo.png|300px]]&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;bwForCluster Helix&#039;&#039;&#039; is dedicated to research in the bwHPC domains Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
&amp;lt;!--* August 2022: Start of bwForCluster Helix--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Oktober 2023: Extension with additional compute nodes: 84x cpu nodes and 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* April 2024: Extension with additional compute nodes: 23x cpu nodes--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Job monitoring portal: https://helix-monitoring.bwservices.uni-heidelberg.de--&amp;gt;&lt;br /&gt;
&amp;lt;!--* July 2024: Cluster extension with 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 1. October 2024: Cluster Maintenance--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 17.06.2025 08:00h - 18.06.2025 18:00h: &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Cluster Maintenance&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
* June 2025: [https://www.bwhpc.de/897.php Important notice regarding the use of MathWorks products]&lt;br /&gt;
* April 2025: Cluster extension with 3x gpu8 nodes (Nvidia H200)&lt;br /&gt;
* &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;8. November 2025: Maintenance 8 am - 8 pm&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[Helix/Getting Started|Getting Started]]&lt;br /&gt;
* E-Learning Course [https://training.bwhpc.de/goto.php/crs/695 Introduction to bwForCluster Helix]&lt;br /&gt;
&amp;lt;!--* [[Helix/Migration Guide|Migration Guide for users of bwForCluster MLS&amp;amp;WISO]]--&amp;gt;&lt;br /&gt;
* [https://www.bwhpc.de/supportportal.php Submit a Ticket] to support unit &#039;bwHPC - Support &amp;gt; bwForCluster Helix&#039;&lt;br /&gt;
&amp;lt;!--* [[Helix/ChangeLog|ChangeLog]]--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Registration/bwForCluster|Registration]] ([[Registration/bwForCluster/RV/Management|RV Management]])&lt;br /&gt;
* [[Helix/Login|Login]]&lt;br /&gt;
* [[Helix/Hardware|Hardware and Architecture]]&lt;br /&gt;
* [[Helix/Filesystems|File Systems and Workspaces]] &lt;br /&gt;
* [[Helix/Software|Cluster Specific Software]]&lt;br /&gt;
* [[Helix/Slurm|Batch System (Slurm)]] &lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive applications&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Cluster Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/Acknowledgement|acknowledge]] the cluster in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15376</id>
		<title>SDS@hd</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=SDS@hd&amp;diff=15376"/>
		<updated>2025-11-04T09:40:15Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:sds-hd-logo.png|350px]]&lt;br /&gt;
&lt;br /&gt;
SDS@hd is a central service for securely storing scientific data (Scientific Data Storage). The service is provided as a state service to researchers of higher education institutions of Baden-Württemberg. It is intended to be used for data that is frequently accessed (&#039;hot data&#039;).&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* November 2022: No special entitlement is needed anymore to participate in an existing storage project.&lt;br /&gt;
* September 2023: Service has now been opened for DFN AAI &amp;amp; eduGAIN federation members to participate on existing storage projects.&lt;br /&gt;
* 8. November 2025: Maintenance&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/storage/sdshd-scientific-data-storage Service description &amp;amp; FAQ]&lt;br /&gt;
* [mailto:sds-hd-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#ffeaef; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#f5dfdf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[SDS@hd/Registration|Registration]]&lt;br /&gt;
* [[SDS@hd/Access|Access]]&lt;br /&gt;
* [[SDS@hd/Security|Data Security]]&lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive data analysis&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Storage Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[SDS@hd/Acknowledgement|acknowledge]] SDS@hd in your publications.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15375</id>
		<title>Helix</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix&amp;diff=15375"/>
		<updated>2025-11-04T09:38:50Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Helix-logo.png|300px]]&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;bwForCluster Helix&#039;&#039;&#039; is dedicated to research in the bwHPC domains Structural and Systems Biology, Medical Science, Soft Matter, Computational Humanities, and Mathematics and Computer Science.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
&amp;lt;!--* August 2022: Start of bwForCluster Helix--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Oktober 2023: Extension with additional compute nodes: 84x cpu nodes and 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* April 2024: Extension with additional compute nodes: 23x cpu nodes--&amp;gt;&lt;br /&gt;
&amp;lt;!--* Job monitoring portal: https://helix-monitoring.bwservices.uni-heidelberg.de--&amp;gt;&lt;br /&gt;
&amp;lt;!--* July 2024: Cluster extension with 1x gpu8 node--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 1. October 2024: Cluster Maintenance--&amp;gt;&lt;br /&gt;
&amp;lt;!--* 17.06.2025 08:00h - 18.06.2025 18:00h: &amp;lt;span style=&amp;quot;color:red&amp;quot;&amp;gt;Cluster Maintenance&amp;lt;/span&amp;gt;--&amp;gt;&lt;br /&gt;
* June 2025: [https://www.bwhpc.de/897.php Important notice regarding the use of MathWorks products]&lt;br /&gt;
* April 2025: Cluster extension with 3x gpu8 nodes (Nvidia H200)&lt;br /&gt;
* 8. November 2025: Cluster Maintenance&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [[Helix/Getting Started|Getting Started]]&lt;br /&gt;
* E-Learning Course [https://training.bwhpc.de/goto.php/crs/695 Introduction to bwForCluster Helix]&lt;br /&gt;
&amp;lt;!--* [[Helix/Migration Guide|Migration Guide for users of bwForCluster MLS&amp;amp;WISO]]--&amp;gt;&lt;br /&gt;
* [https://www.bwhpc.de/supportportal.php Submit a Ticket] to support unit &#039;bwHPC - Support &amp;gt; bwForCluster Helix&#039;&lt;br /&gt;
&amp;lt;!--* [[Helix/ChangeLog|ChangeLog]]--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [[Registration/bwForCluster|Registration]] ([[Registration/bwForCluster/RV/Management|RV Management]])&lt;br /&gt;
* [[Helix/Login|Login]]&lt;br /&gt;
* [[Helix/Hardware|Hardware and Architecture]]&lt;br /&gt;
* [[Helix/Filesystems|File Systems and Workspaces]] &lt;br /&gt;
* [[Helix/Software|Cluster Specific Software]]&lt;br /&gt;
* [[Helix/Slurm|Batch System (Slurm)]] &lt;br /&gt;
* [[Helix/bwVisu|bwVisu]] for visualization and interactive applications&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Cluster Funding&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/Acknowledgement|acknowledge]] the cluster in your publications.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14979</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14979"/>
		<updated>2025-06-23T12:58:09Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
=== The application ===&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
=== The database ===&lt;br /&gt;
The CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
=== Downloads ===&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Documentation ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;br /&gt;
&lt;br /&gt;
== Known Issues ==&lt;br /&gt;
* For the default lane &#039;localhost&#039;, the total installed memory of a compute node is displayed. Note that you can only use the memory that you requested for the CryoSPARC application.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=14941</id>
		<title>Helix/bwVisu</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu&amp;diff=14941"/>
		<updated>2025-06-05T22:02:46Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:BwVisu wide.svg|300px]]&lt;br /&gt;
&lt;br /&gt;
[https://bwvisu.bwservices.uni-heidelberg.de/ bwVisu] is a scalable service for remote visualization and interactive applications. This easy-to-use, web-based platform provides interactive access to scientific work environments utilizing massive compute and storage resources.&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#FEF4AB; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#FFE856; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | News&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* December 2024: The [https://bwvisu.bwservices.uni-heidelberg.de/ new bwVisu version] based on Open OnDemand is now in operation. You can write feedback to [mailto:bwvisu-support@urz.uni-heidelberg.de bwvisu-support].&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#eeeefe; width:100%;&amp;quot; &lt;br /&gt;
| style=&amp;quot;padding:8px; background:#dedefe; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Training &amp;amp; Support&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
* [https://www.urz.uni-heidelberg.de/en/service-catalogue/software-and-applications/bwvisu Service Description &amp;amp;amp; FAQ]&lt;br /&gt;
* [mailto:bwvisu-support@urz.uni-heidelberg.de Submit a Ticket]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#deffee; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#cef2e0; font-size:120%; font-weight:bold;  text-align:left;&amp;quot; | User Documentation&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* [https://bwvisu.bwservices.uni-heidelberg.de/ &amp;lt;span style=&amp;quot;text-decoration: underline;&amp;quot;&amp;gt; Link to Webservice&amp;lt;/span&amp;gt;]&lt;br /&gt;
* [[Helix/bwVisu/Getting_Started|Getting Started]]&lt;br /&gt;
* [[Helix/bwVisu/Usage|Usage]]&lt;br /&gt;
* Available applications and user guides:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align: center; margin-left: 30px;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;font-weight:bold;&amp;quot;&lt;br /&gt;
! Application&lt;br /&gt;
! [[Helix/bwVisu/Usage#noVNC_Applications|noVNC App]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/CryoSPARC|CryoSPARC]]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://imagej.net/software/fiji/ Fiji]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://www.ilastik.org/ Ilastik]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://bio3d.colorado.edu/imod/ IMOD]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://docs.mitk.org/2024.12/UserManualPortal.html MITK]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://phy.readthedocs.io/en/latest/ Phy]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [https://qgis.org/ QGIS]&lt;br /&gt;
| ✓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/JupyterLab|JupyterLab]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/RStudio|RStudio]]&lt;br /&gt;
| ☓&lt;br /&gt;
|-&lt;br /&gt;
| [[Helix/bwVisu/KI-Morph|KI-Morph]]&lt;br /&gt;
| ☓&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;  background:#e6e9eb; width:100%;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:8px; background:#d1dadf; font-size:120%; font-weight:bold;  text-align:left&amp;quot; | Acknowledgement&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
* Please [[Helix/bwVisu/Acknowledgement|acknowledge]] bwVisu in your publications&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14940</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14940"/>
		<updated>2025-06-05T21:58:17Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC Documenation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
=== The application ===&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
=== The database ===&lt;br /&gt;
The CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
=== Downloads ===&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Documentation ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14939</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14939"/>
		<updated>2025-06-05T21:57:16Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* The database */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
=== The application ===&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
=== The database ===&lt;br /&gt;
The CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
=== Downloads ===&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Documenation ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14938</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14938"/>
		<updated>2025-06-05T21:56:28Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Documentation for CryoSPARC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
=== The application ===&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
=== The database ===&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
=== Downloads ===&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Documenation ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14937</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14937"/>
		<updated>2025-06-05T21:56:05Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
=== The application ===&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
=== The database ===&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
=== Downloads ===&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14936</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14936"/>
		<updated>2025-06-05T21:52:28Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC in bwVisu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute resources. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14935</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14935"/>
		<updated>2025-06-05T21:51:33Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The license ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14934</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14934"/>
		<updated>2025-06-05T21:46:38Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one license ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14933</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14933"/>
		<updated>2025-06-05T21:40:30Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC@bwVisu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14932</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14932"/>
		<updated>2025-06-05T21:40:02Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* The CryoSPARC Application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC@bwVisu ==&lt;br /&gt;
The CryoSPARC application at bwVisu starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14931</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14931"/>
		<updated>2025-06-05T21:38:53Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Usage documentation and tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== The CryoSPARC Application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation for CryoSPARC ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14930</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14930"/>
		<updated>2025-06-05T21:35:01Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC@bwVisu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== The CryoSPARC Application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14929</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14929"/>
		<updated>2025-06-05T21:32:16Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC in bwVisu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC@bwVisu ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14928</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14928"/>
		<updated>2025-06-05T21:30:13Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Information about the application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC in bwVisu ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14927</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14927"/>
		<updated>2025-06-05T21:29:49Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14926</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14926"/>
		<updated>2025-06-05T21:29:36Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14925</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14925"/>
		<updated>2025-06-05T21:27:01Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Usage Documentation and Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage documentation and tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14924</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14924"/>
		<updated>2025-06-05T21:23:45Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Information about the application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the application ==&lt;br /&gt;
The CryoSPARC application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage Documentation and Tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14923</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14923"/>
		<updated>2025-06-05T21:23:28Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage Documentation and Tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14922</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14922"/>
		<updated>2025-06-05T21:22:18Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Usage Documentation and Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage Documentation and Tutorials ==&lt;br /&gt;
You can find usage information and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14921</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14921"/>
		<updated>2025-06-05T21:21:58Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Documentation and Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Usage Documentation and Tutorials ==&lt;br /&gt;
You can find usage documentation and tutorials for CryoSPARC at [https://cryosparc.com/docs CryoSPARC Docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14920</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14920"/>
		<updated>2025-06-05T21:19:42Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Documentation and Tutorials ==&lt;br /&gt;
You can find documation and tutorials for CryoSPARC at [https://cryosparc.com/docs].&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14919</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14919"/>
		<updated>2025-06-05T21:17:18Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of the Topaz software. When asked for the path to the Topaz executable, specify: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14918</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14918"/>
		<updated>2025-06-05T21:12:46Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC and Topaz ==&lt;br /&gt;
CryoSPARC can use an existing installation of Topaz. The path to the Topaz executable is: &amp;lt;code&amp;gt;/opt/bwhpc/common/bio/topaz/0.25/bin/topaz&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14917</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14917"/>
		<updated>2025-06-05T21:01:29Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory on bwForCluster Helix the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory on bwForCluster Helix. From there, you can download the results to your own system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14916</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14916"/>
		<updated>2025-06-05T21:00:48Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Downloads from CryoSPARC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your own system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14915</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14915"/>
		<updated>2025-06-05T20:59:28Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;/code&amp;gt; directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14914</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14914"/>
		<updated>2025-06-05T20:59:05Z</updated>

		<summary type="html">&lt;p&gt;S Richling: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the &amp;lt;code&amp;gt;.cryosparc&amp;lt;code&amp;gt; directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14913</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14913"/>
		<updated>2025-06-05T20:57:09Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Information about the CryoSPARC Application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the .cryosparc directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14912</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14912"/>
		<updated>2025-06-05T20:56:48Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC License */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC Application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the .cryosparc directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14911</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14911"/>
		<updated>2025-06-05T20:53:13Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC Application */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting a CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== Information about the CryoSPARC Application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the .cryosparc directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14910</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14910"/>
		<updated>2025-06-05T20:52:37Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* Downloads */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting a CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the .cryosparc directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads from CryoSPARC ==&lt;br /&gt;
When you download results from the CryoSPARC application, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
	<entry>
		<id>https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14909</id>
		<title>Helix/bwVisu/CryoSPARC</title>
		<link rel="alternate" type="text/html" href="https://wiki.bwhpc.de/wiki/index.php?title=Helix/bwVisu/CryoSPARC&amp;diff=14909"/>
		<updated>2025-06-05T20:52:00Z</updated>

		<summary type="html">&lt;p&gt;S Richling: /* CryoSPARC Job */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://cryosparc.com/ CryoSPARC] is a scientific software platform for cryo-electron microscopy (cryo-EM) used in research and drug discovery pipelines.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC License ==&lt;br /&gt;
For starting a CryoSPARC in bwVisu you need your personal CryoSPARC license ID. To obtain a license ID, go to [https://cryosparc.com/download CryoSPARC] and fill out the form. The licnese ID will be send by e-mail. You only need one licence ID, which you can use every time you start a CryoSPARC job in bwVisu.&lt;br /&gt;
&lt;br /&gt;
== CryoSPARC Application ==&lt;br /&gt;
The CryoSPACE application starts a CryoSPARC master process and a worker process on the allocated compute node. You must request enough time and resources for the work you intend to do within a CryoSPARC session. If the application stops due to the time limit, you can restart the application and continue your pipeline from completed CryoSPARC jobs. &lt;br /&gt;
&lt;br /&gt;
Note that the CryoSPARC application creates a database in the .cryosparc directory in your home directory the first time it is used. You can only start one CryoSPARC application at a time. Do not attempt to start more than one CryoSPARC application. This could damage your database.&lt;br /&gt;
&lt;br /&gt;
== Downloads ==&lt;br /&gt;
When you download results, they are initially saved in your home directory. From there, you can download the results to your system via the file browser in bwVisu.&lt;/div&gt;</summary>
		<author><name>S Richling</name></author>
	</entry>
</feed>