0
|
1 #!/bin/sh
|
|
2 ## same as galaxy terst
|
|
3 ./paired_fastq_filtering_wrapper.sh -a test_data/ERR215189_1_part.fastq.gz -b test_data/ERR215189_2_part.fastq.gz -o test_data/single_output.fasta -G test_data/single_output.png -c 10 -N 0 -p 95
|
|
4
|
|
5 echo "paired fastq filtering with defaults"
|
|
6 ./paired_fastq_filtering_wrapper.sh -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.1.fasta -G tmp/test2.1.png -c 10 -N 0
|
|
7
|
|
8 echo "paired fastq filtering with with sampling"
|
5
|
9 ./paired_fastq_filtering_wrapper.sh -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.a2.fasta -G tmp/test2.2.png -c 10 -N 0 -n 500
|
|
10
|
|
11 echo "paired fastq filtering with with sampling"
|
|
12 ./paired_fastq_filtering_wrapper.sh -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.a3.fasta -G tmp/test2.2.png -c 10 -N 0 -n 653
|
|
13
|
|
14 echo "paired fastq filtering with with sampling"
|
|
15 ./paired_fastq_filtering_wrapper.sh -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.a4.fasta -G tmp/test2.2.png -c 10 -N 0 -n 547
|
|
16
|
|
17 echo "paired fastq filtering with with sampling"
|
|
18 ./paired_fastq_filtering_wrapper.sh -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.a5.fasta -G tmp/test2.2.png -c 10 -N 0 -n 839
|
0
|
19
|
|
20 echo "paired fastq filtering with contaminant removing"
|
|
21 ./paired_fastq_filtering_wrapper.sh -F tool_data/organele_ref_and_phi-X174.fasta -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.3.fasta -G tmp/test2.3.png -c 10 -N 0
|
|
22
|
|
23 echo "paired fastq filtering with contaminant removing + trimming"
|
|
24 ./paired_fastq_filtering_wrapper.sh -F tool_data/organele_ref_and_phi-X174.fasta -b test_data/ERR215189_2_part.fastq.gz -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.3.fasta -G tmp/test2.3.png -c 10 -N 0 -s 10 -e 80
|
|
25
|
|
26
|
|
27 echo "paired fastq filtering with contaminant removing - full run"
|
|
28 ./paired_fastq_filtering_wrapper.sh -F tool_data/organele_ref_and_phi-X174.fasta -b test_data/ERR215189_2.fastq.gz -a test_data/ERR215189_1.fastq.gz -o tmp/test2.3.fasta -G tmp/test2.3.png -c 10 -N 0
|
|
29
|