File: run-unit-test

package info (click to toggle)
metabat 2.18-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 972 kB
  • sloc: cpp: 10,869; sh: 422; python: 297; perl: 163; makefile: 19; ansic: 11
file content (18 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
set -e

pkg=metabat

export LC_ALL=C.UTF-8
if [ "${AUTOPKGTEST_TMP}" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf ${AUTOPKGTEST_TMP}" 0 INT QUIT ABRT PIPE TERM
fi

cp -a /usr/share/doc/${pkg}/examples/* "${AUTOPKGTEST_TMP}"

cd "${AUTOPKGTEST_TMP}"

jgi_summarize_bam_contig_depths --referenceFasta contigs.fa --outputDepth contigs_depth.txt contigs-1000.fastq.bam
metabat1 --inFile contigs.fa --abdFile contigs_depth.txt --outFile contigs_bins -v
metabat2 --inFile contigs.fa --abdFile contigs_depth.txt --outFile contigs_bins -v