Software Template: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[Category:Zcluster]][[Category:Software]][[Category: | [[Category:Zcluster]][[Category:Software]][[Category:]] | ||
=== Category: | === Category: === | ||
=== Program on === | === Program on === | ||
=== Version === | === Version === | ||
=== Author / Distributor === | === Author / Distributor === | ||
=== Description === | === Description === | ||
=== Running Program === | === Running Program === | ||
Line 22: | Line 14: | ||
Also refer to [[Running Jobs on zcluster]] | Also refer to [[Running Jobs on zcluster]] | ||
Latest version | Latest version ... is pointed to ... | ||
Example of a shell script blast.sh to run on at the batch queue: | Example of a shell script blast.sh to run on at the batch queue: | ||
Line 29: | Line 21: | ||
#!/bin/bash | #!/bin/bash | ||
cd working_directory | cd working_directory | ||
time | time | ||
</pre> | </pre> | ||
<pre class="gcommand"> | <pre class="gcommand"> | ||
qsub -q queuename ./ | qsub -q queuename ./sub.sh | ||
</pre> | </pre> | ||
=== Documentation === | === Documentation === | ||
=== Installation === | === Installation === | ||
=== System(s) === | === System(s) === | ||
Revision as of 14:03, 31 January 2013
[[Category:]]
Category:
Program on
Version
Author / Distributor
Description
Running Program
Also refer to Running Jobs on zcluster
Latest version ... is pointed to ...
Example of a shell script blast.sh to run on at the batch queue:
#!/bin/bash cd working_directory time
qsub -q queuename ./sub.sh