/* The MIT License (MIT) Copyright (c) 2014 Pierre Lindenbaum Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. History: * 2014 creation */ package com.github.lindenb.jvarkit.tools.biostar; import java.io.File; import java.util.List; import com.beust.jcommander.Parameter; import com.github.lindenb.jvarkit.util.jcommander.Launcher; import com.github.lindenb.jvarkit.util.jcommander.Program; import com.github.lindenb.jvarkit.util.log.Logger; import com.github.lindenb.jvarkit.util.picard.GenomicSequence; import com.github.lindenb.jvarkit.util.picard.SAMSequenceDictionaryProgress; import javax.xml.stream.XMLOutputFactory; import javax.xml.stream.XMLStreamWriter; import htsjdk.samtools.reference.IndexedFastaSequenceFile; import htsjdk.samtools.CigarElement; import htsjdk.samtools.SAMFlag; import htsjdk.samtools.SamReader; import htsjdk.samtools.SAMRecord; import htsjdk.samtools.SAMRecordIterator; import htsjdk.samtools.util.CloserUtil; import htsjdk.samtools.util.SequenceUtil; /** ## Example ```bash $ java -jar dist/biostar59647.jar -r samtools-0.1.18/examples/toy.fa samtools-0.1.18/examples/toy.bam |\ xmllint --format - ``` ```xml <?xml version="1.0" encoding="UTF-8"?> <sam ref="/home/lindenb/samtools-0.1.18/examples/toy.bam" bam="/home/lindenb/samtools-0.1.18/examples/toy.fa"> <!---r /home/lindenb/samtools-0.1.18/examples/toy.fa /home/lindenb/samtools-0.1.18/examples/toy.bam--> <read> <name>r001</name> <sequence>TTAGATAAAGAGGATACTG</sequence> <flags READ_PAIRED="true" READ_MAPPED_IN_PROPER_PAIR="true" READ_UNMAPPED="false" MATE_UNMAPPED="false" READ _REVERSE_STRAND="false" MATE_REVERSE_STRAND="true" FIRST_IN_PAIR="false" SECOND_IN_PAIR="true" NOT_PRIMARY_ALIGN MENT="false" READ_FAILS_VENDOR_QUALITY_CHECK="false" READ_IS_DUPLICATE="false" SUPPLEMENTARY_ALIGNMENT="false">1 63</flags> <qual>30</qual> <chrom index="0">ref</chrom> <pos>7</pos> <cigar>8M4I4M1D3M</cigar> <mate-chrom index="0">ref</mate-chrom> <mate-pos>37</mate-pos> <align> <M read-index="1" read-base="T" ref-index="7" ref-base="T"/> <M read-index="2" read-base="T" ref-index="8" ref-base="T"/> <M read-index="3" read-base="A" ref-index="9" ref-base="A"/> <M read-index="4" read-base="G" ref-index="10" ref-base="G"/> <M read-index="5" read-base="A" ref-index="11" ref-base="A"/> <M read-index="6" read-base="T" ref-index="12" ref-base="T"/> <M read-index="7" read-base="A" ref-index="13" ref-base="A"/> <M read-index="8" read-base="A" ref-index="14" ref-base="A"/> <I read-index="9" read-base="A"/> <I read-index="10" read-base="G"/> <I read-index="11" read-base="A"/> <I read-index="12" read-base="G"/> <M read-index="13" read-base="G" ref-index="15" ref-base="G"/> <M read-index="14" read-base="A" ref-index="16" ref-base="A"/> <M read-index="15" read-base="T" ref-index="17" ref-base="T"/> <M read-index="16" read-base="A" ref-index="18" ref-base="A"/> <D ref-index="19" ref-base="G"/> <M read-index="17" read-base="C" ref-index="20" ref-base="C"/> <M read-index="18" read-base="T" ref-index="21" ref-base="T"/> <M read-index="19" read-base="G" ref-index="22" ref-base="G"/> </align> </read> <read> <name>r002</name> <sequence>AAAAGATAAGGGATAAA</sequence> <flags READ_PAIRED="false" READ_MAPPED_IN_PROPER_PAIR="false" READ_UNMAPPED="false" MATE_UNMAPPED="false" RE AD_REVERSE_STRAND="false" MATE_REVERSE_STRAND="false" FIRST_IN_PAIR="false" SECOND_IN_PAIR="false" NOT_PRIMARY_A LIGNMENT="false" READ_FAILS_VENDOR_QUALITY_CHECK="false" READ_IS_DUPLICATE="false" SUPPLEMENTARY_ALIGNMENT="fals e">0</flags> <qual>30</qual> <chrom index="0">ref</chrom> <pos>9</pos> <cigar>1S2I6M1P1I1P1I4M2I</cigar> <align> <S read-index="1" read-base="A"/> <I read-index="2" read-base="A"/> <I read-index="3" read-base="A"/> <M read-index="4" read-base="A" ref-index="9" ref-base="A"/> <M read-index="5" read-base="G" ref-index="10" ref-base="G"/> <M read-index="6" read-base="A" ref-index="11" ref-base="A"/> <M read-index="7" read-base="T" ref-index="12" ref-base="T"/> <M read-index="8" read-base="A" ref-index="13" ref-base="A"/> <M read-index="9" read-base="A" ref-index="14" ref-base="A"/> <I read-index="10" read-base="G"/> <I read-index="11" read-base="G"/> <M read-index="12" read-base="G" ref-index="15" ref-base="G"/> (...) ``` ## Cited in * cited in http://biorxiv.org/content/early/2014/01/21/001834 "Illumina TruSeq synthetic long-reads empower de novo assembly and resolve complex, highly repetitive transposable elements" */ @Program(name="biostar59647", description="SAM/BAM to XML", biostars=59647 ) public class Biostar59647 extends Launcher { private static final Logger LOG = Logger.build(Biostar59647.class).make(); @Parameter(names={"-o","--output"},description="Output file. Optional . Default: stdout") private File outputFile = null; @Parameter(names={"-r","-R","--reference"},description="Reference file indexed with picard",required=true) private File refFile=null; private Biostar59647() { } @Override public int doWork(final List<String> args) { IndexedFastaSequenceFile indexedFastaSequenceFile=null; SamReader samFileReader=null; try { GenomicSequence genomicSequence=null; indexedFastaSequenceFile=new IndexedFastaSequenceFile(refFile); samFileReader=null; final String bamFile = oneFileOrNull(args); samFileReader = super.openSamReader(bamFile); if(SequenceUtil.areSequenceDictionariesEqual( indexedFastaSequenceFile.getSequenceDictionary(), samFileReader.getFileHeader().getSequenceDictionary()) ) { LOG.warning("Not the same sequence dictionaries"); } XMLOutputFactory xmlfactory= XMLOutputFactory.newInstance(); XMLStreamWriter w= xmlfactory.createXMLStreamWriter(System.out,"UTF-8"); w.writeStartDocument("UTF-8","1.0"); w.writeStartElement("sam"); w.writeAttribute("bam",(bamFile==null?"stdin": bamFile)); w.writeAttribute("ref",refFile.getPath()); w.writeComment(getProgramCommandLine()); SAMSequenceDictionaryProgress progess=new SAMSequenceDictionaryProgress(samFileReader.getFileHeader().getSequenceDictionary()); SAMRecordIterator iter=samFileReader.iterator(); while(iter.hasNext()) { SAMRecord rec=iter.next(); progess.watch(rec); final byte readbases[]=rec.getReadBases(); w.writeStartElement("read"); w.writeStartElement("name"); w.writeCharacters(rec.getReadName()); w.writeEndElement(); w.writeStartElement("sequence"); w.writeCharacters(new String(readbases)); w.writeEndElement(); w.writeStartElement("flags"); for(SAMFlag f: SAMFlag.values()) { w.writeAttribute(f.name(),String.valueOf(f.isSet(rec.getFlags()))); } w.writeCharacters(String.valueOf(rec.getFlags())); w.writeEndElement();//flags if(!rec.getReadUnmappedFlag()) { w.writeStartElement("qual"); w.writeCharacters(String.valueOf(rec.getMappingQuality())); w.writeEndElement(); w.writeStartElement("chrom"); w.writeAttribute("index",String.valueOf(rec.getReferenceIndex())); w.writeCharacters(rec.getReferenceName()); w.writeEndElement(); w.writeStartElement("pos"); w.writeCharacters(String.valueOf(rec.getAlignmentStart())); w.writeEndElement(); w.writeStartElement("cigar"); w.writeCharacters(rec.getCigarString()); w.writeEndElement(); } if(rec.getReadPairedFlag() && !rec.getMateUnmappedFlag()) { w.writeStartElement("mate-chrom"); w.writeAttribute("index",String.valueOf(rec.getMateReferenceIndex())); w.writeCharacters(rec.getMateReferenceName()); w.writeEndElement(); w.writeStartElement("mate-pos"); w.writeCharacters(String.valueOf(rec.getMateAlignmentStart())); w.writeEndElement(); } if(!rec.getReadUnmappedFlag() && rec.getCigar()!=null) { if(genomicSequence==null || !genomicSequence.getChrom().equals(rec.getReferenceName())) { genomicSequence=new GenomicSequence(indexedFastaSequenceFile, rec.getReferenceName()); } w.writeStartElement("align"); int readIndex = 0; int refIndex = rec.getAlignmentStart(); for (final CigarElement e : rec.getCigar().getCigarElements()) { switch (e.getOperator()) { case H : break; // ignore hard clips case P : break; // ignore pads case I : //cont. case S : { final int length = e.getLength(); for(int i=0;i<length;++i) { w.writeEmptyElement(e.getOperator().name()); w.writeAttribute("read-index",String.valueOf(readIndex+1)); if(readIndex>=0 && readIndex< readbases.length) { w.writeAttribute("read-base",String.valueOf((char)(readbases[readIndex]))); } readIndex++; } break; } case N : //cont. -- reference skip case D : { final int length = e.getLength(); for(int i=0;i<length;++i) { w.writeEmptyElement(e.getOperator().name()); w.writeAttribute("ref-index",String.valueOf(refIndex)); if(refIndex>=1 && refIndex<= genomicSequence.length()) { w.writeAttribute("ref-base",String.valueOf(genomicSequence.charAt(refIndex-1))); } refIndex++; } break; } case M : case EQ : case X : { final int length = e.getLength(); for(int i=0;i<length;++i) { w.writeEmptyElement(e.getOperator().name()); char baseRead='\0'; if(readIndex>=0 && readIndex< readbases.length) { baseRead=(char)(rec.getReadBases()[readIndex]); w.writeAttribute("read-index",String.valueOf(readIndex+1)); w.writeAttribute("read-base",String.valueOf(baseRead)); } w.writeAttribute("ref-index",String.valueOf(refIndex)); if(refIndex>=1 && refIndex<= genomicSequence.length()) { char baseRef=genomicSequence.charAt(refIndex-1); w.writeAttribute("ref-base",String.valueOf(baseRef)); if(Character.toUpperCase(baseRef)!=Character.toUpperCase(baseRead)) { w.writeAttribute("mismatch","true"); } } refIndex++; readIndex++; } break; } default : throw new IllegalStateException("Case statement didn't deal with cigar op: " + e.getOperator()); } } w.writeEndElement(); } w.writeEndElement(); } iter.close(); w.writeEndElement(); w.writeEndDocument(); w.flush(); CloserUtil.close(w); } catch(Exception err) { LOG.error(err); return -1; } finally { CloserUtil.close(samFileReader); CloserUtil.close(indexedFastaSequenceFile); } return 0; } /** * @param args */ public static void main(String[] args) { new Biostar59647().instanceMainWithExit(args); } }