Skip to content

Commit c384d2c

Browse files
authored
Tutorial fixes (#940)
Tutorial fixes
2 parents 6bb642c + 36a9a93 commit c384d2c

7 files changed

Lines changed: 17 additions & 8 deletions

File tree

docs/_writing_testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ install BWA - but however you obtain it should be fine.
1010

1111
::
1212

13-
$ conda install --force -c bioconda bwa
13+
$ conda install --force -c conda-forge -c bioconda bwa
1414
... bwa installation ...
1515
$ bwa
1616
Program: bwa (alignment via Burrows-Wheeler transformation)

docs/_writing_using_seqtk.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ install Seqtk - but however you obtain it should be fine.
77

88
::
99

10-
$ conda install --force --yes -c bioconda seqtk=1.2
10+
$ conda install --force --yes -c conda-forge -c bioconda seqtk=1.2
1111
... seqtk installation ...
1212
$ seqtk seq
1313
Usage: seqtk seq [options] <in.fq>|<in.fa>

docs/appliance.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,15 @@ and the machine should become available.
7878
.. image:: images/ova_importing.png
7979
:alt: Screenshot OVA Import
8080

81+
When the import is finished (and before starting the VM), right-click on the new appliance and select "Settings":
82+
83+
1. in the "General" -> "Advanced" tab, select "Bidirectional" for "Shared Clipboard"
84+
2. in the "Display" -> "Screen" tab, tick "Enable 3D Acceleration"
85+
3. in the "Network" -> "Adapter 1" tab, select "PCnet-FAST III (Am79c973)" as "Adapter Type"
86+
4. Click the "OK" button
87+
88+
Now start the appliance by clicking the "Start" button.
89+
8190
The Firefox browser, Komodo_ and Atom_ editors, Galaxy, Planemo and everything else is
8291
available right away on the desktop along with useful links.
8392

docs/tests/tests_building.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rm -rf tool_init_exercise
1515

1616
# Tests
1717

18-
conda install --force --yes -c bioconda seqtk=1.2
18+
conda install --force --yes -c conda-forge -c bioconda seqtk=1.2
1919

2020
cat <(seqtk seq)
2121

docs/tests/tests_building_cwl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd
1313
rm -rf tool_init_exercise
1414

1515
# Tests
16-
conda install --force --yes -c bioconda seqtk=1.2
16+
conda install --force --yes -c conda-forge -c bioconda seqtk=1.2
1717

1818
cat <(seqtk seq)
1919

docs/tests/tests_tdd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd
99
rm -rf bwa
1010

1111
# Tests
12-
conda install --force --yes -c bioconda bwa
12+
conda install --force --yes -c conda-forge -c bioconda bwa
1313

1414
echo "Executing bwa to see help - should see output, but it has a non-zero exit code."
1515
bwa | true

docs/writing/gc_content.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<tool id="gc_content" name="Compute GC content">
22
<description>for each sequence in a file</description>
3-
<command>perl $__tool_directory__/gc_content.pl $input output.tsv</command>
3+
<command>perl '$__tool_directory__/gc_content.pl' '$input' output.tsv</command>
44
<inputs>
5-
<param format="fasta" name="input" type="data" label="Source file"/>
5+
<param name="input" type="data" format="fasta" label="Source file"/>
66
</inputs>
77
<outputs>
8-
<data format="tabular" name="output" from_work_dir="output.tsv" />
8+
<data name="output" format="tabular" from_work_dir="output.tsv" />
99
</outputs>
1010
<help>
1111
This tool computes GC content from a FASTA file.

0 commit comments

Comments
 (0)