1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Upstream provides binary files without sources for:
* example/ex.bam
* example/ex.bam.bai
These have been converted to corresponding text (.sam) files with the commands:
* samtools view -h -o ex.sam example/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 - > example/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, 18 Jul 2020 04:33:13 +0530
|