comparison test_run1.sh @ 0:a4cd8608ef6b draft

Uploaded
author petr-novak
date Mon, 01 Apr 2019 07:56:36 -0400
parents
children 378565f5a875
comparison
equal deleted inserted replaced
-1:000000000000 0:a4cd8608ef6b
1 #!/bin/sh
2
3 # same like galaxy test:
4
5 ./single_fastq_filtering_wrapper.sh -a test_data/ERR215189_1_part.fastq.gz -o test_data/single_output.fasta -G test_data/single_output.png -c 10 -N 0 -p 95
6
7
8 echo "single fastq filtering with defaults"
9 ./single_fastq_filtering_wrapper.sh -a test_data/ERR215189_1_part.fastq.gz -o tmp/test1.fasta -G tmp/test1.png -c 10 -N 0
10
11 echo "single fastq filtering with with sampling"
12 ./single_fastq_filtering_wrapper.sh -a test_data/ERR215189_1_part.fastq.gz -o tmp/test2.fasta -G tmp/test2.png -c 10 -N 0 -n 500
13
14 echo "single fastq filtering with contaminant removing"
15 ./single_fastq_filtering_wrapper.sh -F tool_data/organele_ref_and_phi-X174.fasta -a test_data/ERR215189_1_part.fastq.gz -o tmp/test3.fasta -G tmp/test3.png -c 10 -N 0
16
17