Build pipeline: vsh-ci-dev-jsbwk
Source commit: 1e1ffb315f
Source message: Merge pull request #17 from viash-hub/add_biobox_modules
- Migrate a number of components to biobox
- Fix tests
- Reduce size of test resources
- Prepare for Viash Hub
15 lines
391 B
Bash
15 lines
391 B
Bash
#!/bin/bash
|
|
|
|
echo ">>> Testing $meta_functionality_name"
|
|
|
|
"$meta_executable" \
|
|
--transcriptome_fasta "$meta_resources_dir/transcriptome.fasta" \
|
|
--kallisto_index Kallisto
|
|
|
|
echo ">>> Checking whether output exists"
|
|
[ ! -f "Kallisto" ] && echo "Kallisto index does not exist!" && exit 1
|
|
[ ! -s "Kallisto" ] && echo "Kallisto index is empty!" && exit 1
|
|
|
|
echo "All tests succeeded!"
|
|
exit 0
|