├── .gitignore ├── BAM ├── extract_flag_from_bam.c ├── get_aln_feats.c └── parse_bam.c ├── FASTQ └── read_fastq.c ├── LICENSE ├── README.md └── VCF ├── get_number_of_snps.c ├── get_snps_feats.c ├── print_contig_info.c ├── print_number_of_samples.c └── print_out_by_coords.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/.gitignore -------------------------------------------------------------------------------- /BAM/extract_flag_from_bam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/BAM/extract_flag_from_bam.c -------------------------------------------------------------------------------- /BAM/get_aln_feats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/BAM/get_aln_feats.c -------------------------------------------------------------------------------- /BAM/parse_bam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/BAM/parse_bam.c -------------------------------------------------------------------------------- /FASTQ/read_fastq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/FASTQ/read_fastq.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/README.md -------------------------------------------------------------------------------- /VCF/get_number_of_snps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/VCF/get_number_of_snps.c -------------------------------------------------------------------------------- /VCF/get_snps_feats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/VCF/get_snps_feats.c -------------------------------------------------------------------------------- /VCF/print_contig_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/VCF/print_contig_info.c -------------------------------------------------------------------------------- /VCF/print_number_of_samples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/VCF/print_number_of_samples.c -------------------------------------------------------------------------------- /VCF/print_out_by_coords.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biodata-fun/htslib_howto/HEAD/VCF/print_out_by_coords.c --------------------------------------------------------------------------------