1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
import nanoget
def run_tests():
"""Test functions using testdata from the nanotest repo."""
nanoget.get_input("bam", ["nanotest/alignment.bam"])
nanoget.get_input("bam", ["nanotest/alignment.bam"], keep_supp=False)
nanoget.get_input("fastq_rich", ["nanotest/reads.fastq.gz"])
nanoget.get_input("fastq_rich", ["nanotest/reads-mixed-timestamp.fastq"])
nanoget.get_input("summary", ["nanotest/sequencing_summary.txt"], combine="track")
nanoget.get_input("fastq_minimal", ["nanotest/reads.fastq.gz"])
nanoget.get_input("fastq", ["nanotest/reads.fastq.gz"])
nanoget.get_input("fasta", ["nanotest/reads.fa.gz"])
if __name__ == "__main__":
run_tests()
|