use of htsjdk.samtools.SamReaderFactory in project jvarkit by lindenb.
the class TView method initialize.
public int initialize() throws IOException {
if (this.referenceFile != null) {
this.indexedFastaSequenceFile = new IndexedFastaSequenceFile(this.referenceFile);
}
if (this.samRecordFilter == null) {
this.samRecordFilter = SamFilterParser.ACCEPT_ALL;
}
final SamReaderFactory srf = SamReaderFactory.makeDefault().referenceSequence(this.referenceFile).validationStringency(ValidationStringency.LENIENT);
for (final SamInputResource sir : this.samInputResources) {
final SamReader samReader = srf.open(sir);
this.samReaders.add(samReader);
}
for (final File vcfFile : IOUtils.unrollFile(this.variantFiles)) {
final VcfSource vcfSource = new VcfSource();
LOG.debug("OPEN " + vcfFile);
vcfSource.vcfFile = vcfFile;
vcfSource.vcfFileReader = new VCFFileReader(vcfFile, true);
this.vcfReaders.add(vcfSource);
}
if (this.tabixKnownGene != null) {
this.tabixKnownGene = new TabixKnownGeneFileReader(this.knownGeneUri);
}
return 0;
}
use of htsjdk.samtools.SamReaderFactory in project jvarkit by lindenb.
the class BamFile method newInstance.
public static BamFile newInstance(final File f) throws IOException {
IOUtil.assertFileIsReadable(f);
final SamReaderFactory srf = SamReaderFactory.makeDefault();
srf.validationStringency(ValidationStringency.LENIENT);
return new BamFile(f.getAbsolutePath(), srf.open(f), Optional.empty());
}
use of htsjdk.samtools.SamReaderFactory in project jvarkit by lindenb.
the class BamFile method newInstance.
public static BamFile newInstance(final URL url) throws IOException {
final File baiFile = File.createTempFile("tmp.", BAMIndex.BAMIndexSuffix);
Optional<File> savedBaiFile = Optional.empty();
baiFile.deleteOnExit();
for (int i = 0; i < 2; ++i) {
final String bamurl = url.toExternalForm();
final String baiurl = (i == 0 ? bamurl : bamurl.substring(0, bamurl.length() - BamFileIoUtils.BAM_FILE_EXTENSION.length())) + BAMIndex.BAMIndexSuffix;
InputStream in = null;
FileOutputStream out = null;
try {
LOG.info("trying " + baiurl);
in = new URL(baiurl).openStream();
out = new FileOutputStream(baiFile);
IOUtil.copyStream(in, out);
out.flush();
out.close();
in.close();
savedBaiFile = Optional.of(baiFile);
break;
} catch (final IOException err) {
baiFile.delete();
LOG.info("Cannot fetch " + baiurl + " : " + err.getMessage());
} finally {
CloserUtil.close(out);
CloserUtil.close(in);
}
}
if (!savedBaiFile.isPresent()) {
throw new IOException("cannot get a bam index file for " + url);
}
final SamReaderFactory srf = SamReaderFactory.makeDefault();
srf.validationStringency(ValidationStringency.LENIENT);
final SamInputResource sir = SamInputResource.of(url);
sir.index(savedBaiFile.get());
return new BamFile(url.toExternalForm(), srf.open(sir), savedBaiFile);
}
use of htsjdk.samtools.SamReaderFactory in project jvarkit by lindenb.
the class BamTreePack method doWork.
@Override
public int doWork(List<String> args) {
setDimension(this.dimensionStr);
SamReader in = null;
try {
parseConfigFile();
if (super.nodeFactoryChain.next == null) {
LOG.error("no path defined");
return -1;
}
final SamReaderFactory srf = super.createSamReaderFactory();
if (args.isEmpty()) {
LOG.info("Reading stdin");
in = srf.open(SamInputResource.of(stdin()));
scan(in);
CloserUtil.close(in);
in = null;
LOG.info("Done stdin");
} else {
for (final String filename : args) {
LOG.info("Reading " + filename);
in = srf.open(SamInputResource.of(filename));
scan(in);
LOG.info("Done " + filename);
CloserUtil.close(in);
}
}
this.layout();
this.svg(this.outputFile);
return RETURN_OK;
} catch (final Exception err) {
LOG.error(err);
return -1;
} finally {
CloserUtil.close(in);
}
}
use of htsjdk.samtools.SamReaderFactory in project jvarkit by lindenb.
the class XContaminations method doWork.
@Override
public int doWork(final List<String> args) {
long last_save_ms = System.currentTimeMillis();
if (this.output_as_vcf && !this.use_only_sample_name) {
LOG.error("cannot write vcf if --sample is not set");
return -1;
}
if (args.size() < 2) {
LOG.error("Illegal Number of args");
return -1;
}
final Set<File> bamFiles = IOUtils.unrollFiles(args.subList(1, args.size())).stream().map(S -> new File(S)).collect(Collectors.toSet());
if (bamFiles.isEmpty()) {
LOG.error("Undefined BAM file(s)");
return -1;
}
SAMRecordIterator iter = null;
VcfIterator in = null;
Map<String, SamReader> sample2samReader = new HashMap<>();
VariantContextWriter vcfw = null;
try {
final SamReaderFactory srf = super.createSamReaderFactory();
if (args.get(0).equals("-")) {
in = super.openVcfIterator(null);
} else {
in = super.openVcfIterator(args.get(0));
}
VCFHeader vcfHeader = in.getHeader();
final SAMSequenceDictionary dict1 = vcfHeader.getSequenceDictionary();
if (dict1 == null) {
LOG.error(JvarkitException.VcfDictionaryMissing.getMessage(args.get(0)));
return -1;
}
final Set<String> sampleNames = new HashSet<>(vcfHeader.getSampleNamesInOrder());
if (sampleNames.isEmpty()) {
LOG.error("VCF contains no sample");
return -1;
}
for (final File bamFile : bamFiles) {
LOG.info("Opening " + bamFile);
final SamReader samReader = srf.open(bamFile);
final SAMFileHeader samHeader = samReader.getFileHeader();
final SAMSequenceDictionary dict2 = samHeader.getSequenceDictionary();
if (dict2 == null) {
samReader.close();
LOG.error(JvarkitException.BamDictionaryMissing.getMessage(bamFile.getPath()));
return -1;
}
if (!SequenceUtil.areSequenceDictionariesEqual(dict1, dict2)) {
samReader.close();
LOG.error(JvarkitException.DictionariesAreNotTheSame.getMessage(dict1, dict2));
return -1;
}
if (!samReader.hasIndex()) {
samReader.close();
LOG.error("sam is not indexed : " + bamFile);
return -1;
}
String sampleName = null;
for (final SAMReadGroupRecord rgr : samHeader.getReadGroups()) {
final String s = rgr.getSample();
if (StringUtil.isBlank(s))
continue;
if (sampleName == null) {
sampleName = s;
} else if (!sampleName.equals(s)) {
samReader.close();
LOG.error("Cannot handle more than one sample/bam " + bamFile + " " + sampleName);
return -1;
}
}
if (sampleName == null) {
samReader.close();
LOG.error("No sample in " + bamFile);
// skip this bam
continue;
}
if (!sampleNames.contains(sampleName)) {
samReader.close();
LOG.error("Not in VCF header: sample " + sampleName + " " + bamFile);
// skip this bam
continue;
}
if (sample2samReader.containsKey(sampleName)) {
samReader.close();
LOG.error("Cannot handle more than one bam/sample: " + bamFile + " " + sampleName);
return -1;
}
sample2samReader.put(sampleName, samReader);
}
if (sample2samReader.size() < 2) {
LOG.error("Not engough BAM/samples. Expected at least two valid BAMs");
return -1;
}
sampleNames.retainAll(sample2samReader.keySet());
/* create a VCF is VCF output asked */
final List<SamplePair> sampleListForVcf;
if (this.output_as_vcf) {
vcfw = super.openVariantContextWriter(outputFile);
final Set<VCFHeaderLine> metaData = new HashSet<>();
metaData.add(new VCFFormatHeaderLine("S1S1", 1, VCFHeaderLineType.Integer, "reads sample 1 supporting sample 1"));
metaData.add(new VCFFormatHeaderLine("S1S2", 1, VCFHeaderLineType.Integer, "reads sample 1 supporting sample 2"));
metaData.add(new VCFFormatHeaderLine("S1SO", 1, VCFHeaderLineType.Integer, "reads sample 1 supporting others"));
metaData.add(new VCFFormatHeaderLine("S2S1", 1, VCFHeaderLineType.Integer, "reads sample 2 supporting sample 1"));
metaData.add(new VCFFormatHeaderLine("S2S2", 1, VCFHeaderLineType.Integer, "reads sample 2 supporting sample 2"));
metaData.add(new VCFFormatHeaderLine("S2SO", 1, VCFHeaderLineType.Integer, "reads sample 2 supporting others"));
metaData.add(new VCFFormatHeaderLine("FR", 1, VCFHeaderLineType.Float, "Fraction. '-1' for unavailable."));
metaData.add(new VCFFormatHeaderLine("S1A", 1, VCFHeaderLineType.Character, "sample 1 allele"));
metaData.add(new VCFFormatHeaderLine("S2A", 1, VCFHeaderLineType.Character, "sample 2 allele"));
metaData.add(new VCFFilterHeaderLine("XCONTAMINATION", "Fraction test is > " + fraction_treshold));
metaData.add(new VCFFilterHeaderLine("BADSAMPLES", "At least one pair of genotype fails the 'LE' test"));
metaData.add(new VCFInfoHeaderLine("LE", 1, VCFHeaderLineType.Integer, "number of pair of genotypes having (S1S1<=S1S2 or S2S2<=S2S1)."));
metaData.add(new VCFInfoHeaderLine("BADSAMPLES", VCFHeaderLineCount.UNBOUNDED, VCFHeaderLineType.String, "Samples founds failing the 'LE' test"));
sampleListForVcf = new ArrayList<>();
final List<String> sampleList = new ArrayList<>(sampleNames);
for (int x = 0; x + 1 < sampleList.size(); ++x) {
for (int y = x + 1; y < sampleList.size(); ++y) {
sampleListForVcf.add(new SamplePair(new SimpleSampleIdenfifier(sampleList.get(x)), new SimpleSampleIdenfifier(sampleList.get(y))));
}
}
final VCFHeader header2 = new VCFHeader(metaData, sampleListForVcf.stream().map(V -> V.getLabel()).sorted().collect(Collectors.toList()));
header2.setSequenceDictionary(dict1);
vcfw.writeHeader(header2);
} else {
vcfw = null;
sampleListForVcf = null;
}
final Map<SamplePair, SampleAlleles> contaminationTable = new HashMap<>();
final SAMSequenceDictionaryProgress progress = new SAMSequenceDictionaryProgress(dict1).logger(LOG);
while (in.hasNext()) {
final VariantContext ctx = progress.watch(in.next());
if (!ctx.isSNP() || ctx.isFiltered() || !ctx.isBiallelic() || ctx.isSymbolic() || !this.variantFilter.test(ctx)) {
continue;
}
int count_homref = 0;
int count_homvar = 0;
int count_het = 0;
final Map<String, Genotype> sample2gt = new HashMap<>();
for (int gidx = 0; gidx < ctx.getNSamples(); ++gidx) {
final Genotype G = ctx.getGenotype(gidx);
if (!G.isCalled())
continue;
if (G.isHet()) {
// here because in use_singleton we must be sure that there is only one hom_var
count_het++;
if (this.use_singleton && count_het > 0)
break;
} else if (G.isHomVar()) {
// here because in use_singleton we must be sure that there is only one hom_var
count_homvar++;
if (this.use_singleton && count_homvar > 1)
break;
}
if (G.isFiltered())
continue;
if (!sample2samReader.containsKey(G.getSampleName()))
continue;
if (!sampleNames.contains(G.getSampleName()))
continue;
if (!this.genotypeFilter.test(ctx, G))
continue;
sample2gt.put(G.getSampleName(), G);
}
if (this.use_singleton && count_het > 0)
continue;
if (this.use_singleton && count_homvar > 1)
continue;
if (sample2gt.size() < 2)
continue;
// reset and recount
count_homref = 0;
count_homvar = 0;
count_het = 0;
for (final String sampleName : sample2gt.keySet()) {
final Genotype G = ctx.getGenotype(sampleName);
switch(G.getType()) {
case HOM_REF:
count_homref++;
break;
case HOM_VAR:
count_homvar++;
break;
case HET:
count_het++;
break;
default:
break;
}
}
// singleton check
if (this.use_singleton && (count_het > 0 || count_homvar != 1)) {
continue;
}
// at least one HOM_REF and one HOM_VAR
if (count_homref == 0)
continue;
if (count_homvar == 0)
continue;
final Map<SampleIdentifier, Counter<Character>> sample_identifier_2allelesCount = new HashMap<>();
/* scan Reads for those Genotype/Samples */
for (final String sampleName : sample2gt.keySet()) {
if (!sample2samReader.containsKey(sampleName))
continue;
// sample name is not in vcf header
final SamReader samReader = sample2samReader.get(sampleName);
if (samReader == null)
continue;
final Genotype genotype = sample2gt.get(sampleName);
if (genotype == null)
continue;
iter = samReader.query(ctx.getContig(), ctx.getStart(), ctx.getEnd(), false);
while (iter.hasNext()) {
final SAMRecord record = iter.next();
if (record.getEnd() < ctx.getStart())
continue;
if (ctx.getEnd() < record.getStart())
continue;
if (record.getReadUnmappedFlag())
continue;
if (this.filter.filterOut(record))
continue;
final SAMReadGroupRecord srgr = record.getReadGroup();
// not current sample
if (srgr == null)
continue;
if (!sampleName.equals(srgr.getSample()))
continue;
final Cigar cigar = record.getCigar();
if (cigar == null || cigar.isEmpty())
continue;
byte[] readSeq = record.getReadBases();
if (readSeq == null || readSeq.length == 0)
continue;
int readPos = record.getReadPositionAtReferencePosition(ctx.getStart());
if (readPos < 1)
continue;
readPos--;
if (readPos >= readSeq.length)
continue;
final char base = Character.toUpperCase((char) readSeq[readPos]);
if (base == 'N')
continue;
final SampleIdentifier sampleIdentifier;
if (this.use_only_sample_name) {
sampleIdentifier = new SimpleSampleIdenfifier(sampleName);
} else {
final ShortReadName readName = ShortReadName.parse(record);
if (!readName.isValid()) {
LOG.info("No a valid read name " + record.getReadName());
continue;
}
sampleIdentifier = new SequencerFlowCellRunLaneSample(readName, sampleName);
}
Counter<Character> sampleAlleles = sample_identifier_2allelesCount.get(sampleIdentifier);
if (sampleAlleles == null) {
sampleAlleles = new Counter<Character>();
sample_identifier_2allelesCount.put(sampleIdentifier, sampleAlleles);
}
sampleAlleles.incr(base);
}
iter.close();
iter = null;
}
/* end scan reads for this sample */
/* sum-up data for this SNP */
final VariantContextBuilder vcb;
final List<Genotype> genotypeList;
if (this.output_as_vcf) {
vcb = new VariantContextBuilder(args.get(0), ctx.getContig(), ctx.getStart(), ctx.getEnd(), ctx.getAlleles());
if (ctx.hasID())
vcb.id(ctx.getID());
genotypeList = new ArrayList<>();
} else {
vcb = null;
genotypeList = null;
}
for (final String sample1 : sample2gt.keySet()) {
final Genotype g1 = sample2gt.get(sample1);
final char a1 = g1.getAllele(0).getBaseString().charAt(0);
for (final String sample2 : sample2gt.keySet()) {
if (sample1.compareTo(sample2) >= 0)
continue;
final Genotype g2 = sample2gt.get(sample2);
if (g2.sameGenotype(g1))
continue;
final char a2 = g2.getAllele(0).getBaseString().charAt(0);
for (final SampleIdentifier sfcr1 : sample_identifier_2allelesCount.keySet()) {
if (!sfcr1.getSampleName().equals(sample1))
continue;
final Counter<Character> counter1 = sample_identifier_2allelesCount.get(sfcr1);
if (counter1 == null)
continue;
for (final SampleIdentifier sfcr2 : sample_identifier_2allelesCount.keySet()) {
if (!sfcr2.getSampleName().equals(sample2))
continue;
final SamplePair samplePair = new SamplePair(sfcr1, sfcr2);
final Counter<Character> counter2 = sample_identifier_2allelesCount.get(sfcr2);
if (counter2 == null)
continue;
SampleAlleles sampleAlleles = contaminationTable.get(samplePair);
if (sampleAlleles == null) {
sampleAlleles = new SampleAlleles();
contaminationTable.put(samplePair, sampleAlleles);
if (!this.output_as_vcf && contaminationTable.size() % 10000 == 0)
LOG.info("n(pairs)=" + contaminationTable.size());
}
sampleAlleles.number_of_comparaisons++;
for (final Character allele : counter1.keySet()) {
final long n = counter1.count(allele);
if (allele.equals(a1)) {
sampleAlleles.reads_sample1_supporting_sample1 += n;
} else if (allele.equals(a2)) {
sampleAlleles.reads_sample1_supporting_sample2 += n;
} else {
sampleAlleles.reads_sample1_supporting_other += n;
}
}
for (final Character allele : counter2.keySet()) {
final long n = counter2.count(allele);
if (allele.equals(a2)) {
sampleAlleles.reads_sample2_supporting_sample2 += n;
} else if (allele.equals(a1)) {
sampleAlleles.reads_sample2_supporting_sample1 += n;
} else {
sampleAlleles.reads_sample2_supporting_other += n;
}
}
}
}
}
}
if (this.output_as_vcf) {
final Set<String> bad_samples = new TreeSet<>();
boolean fraction_flag = false;
int num_lt = 0;
for (final SamplePair samplepair : sampleListForVcf) {
final GenotypeBuilder gb = new GenotypeBuilder(samplepair.getLabel());
final SampleAlleles sampleAlleles = contaminationTable.get(samplepair);
if (sampleAlleles != null) {
gb.attribute("S1S1", sampleAlleles.reads_sample1_supporting_sample1);
gb.attribute("S1S2", sampleAlleles.reads_sample1_supporting_sample2);
gb.attribute("S1SO", sampleAlleles.reads_sample1_supporting_other);
gb.attribute("S2S1", sampleAlleles.reads_sample2_supporting_sample1);
gb.attribute("S2S2", sampleAlleles.reads_sample2_supporting_sample2);
gb.attribute("S2SO", sampleAlleles.reads_sample2_supporting_other);
gb.attribute("S1A", sample2gt.get(samplepair.sample1.getSampleName()).getAllele(0).getDisplayString().charAt(0));
gb.attribute("S2A", sample2gt.get(samplepair.sample2.getSampleName()).getAllele(0).getDisplayString().charAt(0));
final double fraction = sampleAlleles.getFraction();
gb.attribute("FR", fraction);
if (!this.passFractionTreshold.test(fraction)) {
fraction_flag = true;
}
boolean bad_lt_flag = false;
if (sampleAlleles.reads_sample1_supporting_sample1 <= this.fail_factor * sampleAlleles.reads_sample1_supporting_sample2) {
bad_samples.add(samplepair.sample1.getSampleName());
bad_lt_flag = true;
}
if (sampleAlleles.reads_sample2_supporting_sample2 <= this.fail_factor * sampleAlleles.reads_sample2_supporting_sample1) {
bad_samples.add(samplepair.sample2.getSampleName());
bad_lt_flag = true;
}
if (bad_lt_flag) {
num_lt++;
}
} else {
gb.attribute("S1S1", -1);
gb.attribute("S1S2", -1);
gb.attribute("S1SO", -1);
gb.attribute("S2S1", -1);
gb.attribute("S2S2", -1);
gb.attribute("S2SO", -1);
gb.attribute("S1A", '.');
gb.attribute("S2A", '.');
gb.attribute("FR", -1f);
}
genotypeList.add(gb.make());
}
if (!bad_samples.isEmpty()) {
vcb.attribute("BADSAMPLES", new ArrayList<>(bad_samples));
}
vcb.attribute("LE", num_lt);
if (fraction_flag || !bad_samples.isEmpty()) {
if (fraction_flag)
vcb.filter("XCONTAMINATION");
if (!bad_samples.isEmpty())
vcb.filter("BADSAMPLES");
} else {
vcb.passFilters();
}
vcb.genotypes(genotypeList);
vcfw.add(vcb.make());
contaminationTable.clear();
} else {
final long now = System.currentTimeMillis();
if (this.outputFile != null && this.save_every_sec > -1L && last_save_ms + (this.save_every_sec * 1000L) > now) {
saveToFile(contaminationTable);
last_save_ms = now;
}
}
}
progress.finish();
if (this.output_as_vcf) {
vcfw.close();
vcfw = null;
} else {
saveToFile(contaminationTable);
}
return 0;
} catch (final Exception e) {
LOG.error(e);
return -1;
} finally {
CloserUtil.close(vcfw);
CloserUtil.close(in);
CloserUtil.close(iter);
for (SamReader samReader : sample2samReader.values()) CloserUtil.close(samReader);
sample2samReader.clear();
}
}
Aggregations