Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tgaspe committed Aug 22, 2024
1 parent 21ccd26 commit 4c8beab
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/fastqc/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ argument_groups:

- name: Outputs
description: |
At least one of the output options (--html or --zip) must be used:
At least one of the output options (--html or --zip) must be used.
arguments:

- name: --html
Expand All @@ -39,7 +39,7 @@ argument_groups:
e.g.
--input "sample_1.fq"
--html "*.html"
would create a html file named sample_1.html
would create an output html file named sample_1.html
example: "*.html"

- name: --zip
Expand All @@ -53,7 +53,7 @@ argument_groups:
e.g.
--input "sample_1.fq"
--html "*.zip"
would create a zip file named sample_1.zip
would create an output zip file named sample_1.zip
example: "*.zip"

- name: Options
Expand Down
6 changes: 5 additions & 1 deletion src/fastqc/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ echo "-> Run Test1: one input"
--input "../input_1.fq" \
--html "*_fastqc.html" \
--zip "*_fastqc.zip" \
--quiet \

assert_file_exists "input_1_fastqc.html"
assert_file_exists "input_1_fastqc.zip"
Expand All @@ -133,6 +134,7 @@ echo "-> Run Test2: two inputs"
--input "../input_2.fq" \
--html "*_fastqc.html" \
--zip "*_fastqc.zip" \
--quiet \

# File 1
assert_file_exists "input_1_fastqc.html"
Expand Down Expand Up @@ -165,7 +167,7 @@ echo "-> Run Test3: contaminants"
--contaminants "../contaminants.txt" \
--html "*_fastqc.html" \
--zip "*_fastqc.zip" \

--quiet \

assert_file_exists "input_1_fastqc.html"
assert_file_exists "input_1_fastqc.zip"
Expand All @@ -190,6 +192,7 @@ echo "-> Run Test4: sam file"
--format "sam" \
--html "*_fastqc.html" \
--zip "*_fastqc.zip" \
--quiet \

assert_file_exists "example_fastqc.html"
assert_file_exists "example_fastqc.zip"
Expand Down Expand Up @@ -218,6 +221,7 @@ echo "-> Run Test5: multiple options"
--kmers 5 \
--html "*_fastqc.html" \
--zip "*_fastqc.zip" \
--quiet \
# --casava \

assert_file_exists "input_1_fastqc.html"
Expand Down

0 comments on commit 4c8beab

Please sign in to comment.