Post-release updates
Search a source directory for FASTQ files matching a list of given sample names and copy to a destination directory.
# Shell ezfastq /path/to/data/ sample1 sample2 sample3 --workdir=path/to/dest/ ezfastq /opt/seq/ samplenames.txt --workdir=out/ # Python import ezfastq samples = ["sample1", "sample2", "sample3"] source = "/path/to/seqs/" dest = "new/path/" ezfastq.api.copy(samples, source, workdir=dest)
用于处理和分析FASTQ格式的测序数据
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
ezfastq
Search a source directory for FASTQ files matching a list of given sample names and copy to a destination directory.