Currently for each partition, when the master bam file is intersected with that partition's bed, a "reject" file is createdsamtools view -U. This results in many unnecessary files (each partition has its own reject bin). Better to remove -U and just run a final command for all regions so there is only one "reject" bin.
Currently for each partition, when the master bam file is intersected with that partition's bed, a "reject" file is created
samtools view -U
. This results in many unnecessary files (each partition has its own reject bin). Better to remove-U
and just run a final command for all regions so there is only one "reject" bin.