1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Upstream provides binary files without sources for:
* data/ex.bam
* data/ex.bam.bai
These have been converted to corresponding text (.sam) files with the commands:
* samtools view -h -o ex.sam data/ex.bam
And the corresponding *.sam files are added to: debian/missing-sources
They can be generated back with the following commands:
* cat debian/missing-sources/ex.sam| samtools view -Sb - > data/ex.bam
* samtools index data/ex.bam data/ex.bam.bai
These commands are also being run in debian/rules since these binaries are needed for testing.
-- Nilesh Patra <npatra974@gmail.com> Sat, 04 Jul 2020 23:19:03 +0530
|