Skip to content

Commit 689babc

Browse files
authored
Update_writing_using_seqtk01.rst
-A replaced the -a as mentioned in the option section of seqtk seq, despite -a just did the job!!!! A matter of consistency!! as in: galaxyproject#561
1 parent 90c70eb commit 689babc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/_writing_cwl_intro.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ but you will still need to open up the editor and fill out the command, describe
3030
input parameters, tool outputs, writeup a help section, etc....
3131

3232
The ``tool_init`` command can do a little bit better than this as well. We can
33-
use the test command we tried above ``seqtk seq -a 2.fastq > 2.fasta`` as
33+
use the test command we tried above ``seqtk seq -A 2.fastq > 2.fasta`` as
3434
an example to generate a command block by specifing the inputs and the outputs
3535
as follows.
3636

@@ -40,7 +40,7 @@ as follows.
4040
--cwl \
4141
--id 'seqtk_seq' \
4242
--name 'Convert to FASTA (seqtk)' \
43-
--example_command 'seqtk seq -a 2.fastq > 2.fasta' \
43+
--example_command 'seqtk seq -A 2.fastq > 2.fasta' \
4444
--example_input 2.fastq \
4545
--example_output 2.fasta
4646

@@ -60,7 +60,7 @@ tool is generated.
6060
--cwl \
6161
--id 'seqtk_seq' \
6262
--name 'Convert to FASTA (seqtk)' \
63-
--example_command 'seqtk seq -a 2.fastq > 2.fasta' \
63+
--example_command 'seqtk seq -A 2.fastq > 2.fasta' \
6464
--example_input 2.fastq \
6565
--example_output 2.fasta \
6666
--container 'dukegcb/seqtk' \

0 commit comments

Comments
 (0)