bio-velvet_underground 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.travis.yml +13 -0
- data/Gemfile +19 -0
- data/LICENSE.txt +20 -0
- data/README.md +53 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/ext/bioruby.patch +60 -0
- data/ext/mkrf_conf.rb +50 -0
- data/ext/src/Makefile +125 -0
- data/ext/src/src/allocArray.c +305 -0
- data/ext/src/src/allocArray.h +86 -0
- data/ext/src/src/autoOpen.c +107 -0
- data/ext/src/src/autoOpen.h +18 -0
- data/ext/src/src/binarySequences.c +813 -0
- data/ext/src/src/binarySequences.h +125 -0
- data/ext/src/src/concatenatedGraph.c +233 -0
- data/ext/src/src/concatenatedGraph.h +30 -0
- data/ext/src/src/concatenatedPreGraph.c +262 -0
- data/ext/src/src/concatenatedPreGraph.h +29 -0
- data/ext/src/src/correctedGraph.c +2642 -0
- data/ext/src/src/correctedGraph.h +32 -0
- data/ext/src/src/dfib.c +509 -0
- data/ext/src/src/dfib.h +69 -0
- data/ext/src/src/dfibHeap.c +89 -0
- data/ext/src/src/dfibHeap.h +39 -0
- data/ext/src/src/dfibpriv.h +105 -0
- data/ext/src/src/fib.c +628 -0
- data/ext/src/src/fib.h +78 -0
- data/ext/src/src/fibHeap.c +79 -0
- data/ext/src/src/fibHeap.h +41 -0
- data/ext/src/src/fibpriv.h +110 -0
- data/ext/src/src/globals.h +153 -0
- data/ext/src/src/graph.c +3983 -0
- data/ext/src/src/graph.h +233 -0
- data/ext/src/src/graphReConstruction.c +1472 -0
- data/ext/src/src/graphReConstruction.h +30 -0
- data/ext/src/src/graphStats.c +2167 -0
- data/ext/src/src/graphStats.h +72 -0
- data/ext/src/src/kmer.c +652 -0
- data/ext/src/src/kmer.h +73 -0
- data/ext/src/src/kmerOccurenceTable.c +236 -0
- data/ext/src/src/kmerOccurenceTable.h +44 -0
- data/ext/src/src/kseq.h +223 -0
- data/ext/src/src/locallyCorrectedGraph.c +557 -0
- data/ext/src/src/locallyCorrectedGraph.h +40 -0
- data/ext/src/src/passageMarker.c +677 -0
- data/ext/src/src/passageMarker.h +137 -0
- data/ext/src/src/preGraph.c +1717 -0
- data/ext/src/src/preGraph.h +106 -0
- data/ext/src/src/preGraphConstruction.c +990 -0
- data/ext/src/src/preGraphConstruction.h +26 -0
- data/ext/src/src/readCoherentGraph.c +557 -0
- data/ext/src/src/readCoherentGraph.h +30 -0
- data/ext/src/src/readSet.c +1734 -0
- data/ext/src/src/readSet.h +67 -0
- data/ext/src/src/recycleBin.c +199 -0
- data/ext/src/src/recycleBin.h +58 -0
- data/ext/src/src/roadMap.c +342 -0
- data/ext/src/src/roadMap.h +65 -0
- data/ext/src/src/run.c +318 -0
- data/ext/src/src/run.h +52 -0
- data/ext/src/src/run2.c +712 -0
- data/ext/src/src/scaffold.c +1876 -0
- data/ext/src/src/scaffold.h +64 -0
- data/ext/src/src/shortReadPairs.c +1243 -0
- data/ext/src/src/shortReadPairs.h +32 -0
- data/ext/src/src/splay.c +259 -0
- data/ext/src/src/splay.h +43 -0
- data/ext/src/src/splayTable.c +1315 -0
- data/ext/src/src/splayTable.h +31 -0
- data/ext/src/src/tightString.c +362 -0
- data/ext/src/src/tightString.h +82 -0
- data/ext/src/src/utility.c +199 -0
- data/ext/src/src/utility.h +98 -0
- data/ext/src/third-party/zlib-1.2.3/ChangeLog +855 -0
- data/ext/src/third-party/zlib-1.2.3/FAQ +339 -0
- data/ext/src/third-party/zlib-1.2.3/INDEX +51 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile +154 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile.in +154 -0
- data/ext/src/third-party/zlib-1.2.3/README +125 -0
- data/ext/src/third-party/zlib-1.2.3/adler32.c +149 -0
- data/ext/src/third-party/zlib-1.2.3/algorithm.txt +209 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup +66 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas +65 -0
- data/ext/src/third-party/zlib-1.2.3/as400/bndsrc +132 -0
- data/ext/src/third-party/zlib-1.2.3/as400/compile.clp +123 -0
- data/ext/src/third-party/zlib-1.2.3/as400/readme.txt +111 -0
- data/ext/src/third-party/zlib-1.2.3/as400/zlib.inc +331 -0
- data/ext/src/third-party/zlib-1.2.3/compress.c +79 -0
- data/ext/src/third-party/zlib-1.2.3/configure +459 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/README.contrib +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt +65 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb +463 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb +225 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads +114 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads +450 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb +701 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads +328 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr +20 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586 +43 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S +364 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686 +34 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/README +4 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c +444 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas +557 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas +11 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build +33 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/README +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c +608 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h +37 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h +107 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h +47 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c +323 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c +1157 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S +1368 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp +24 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h +307 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/README +35 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc +50 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc +479 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h +466 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm +413 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm +513 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c +186 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm +392 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt +28 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm +972 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c +62 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm +1083 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat +3 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip +67 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h +132 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c +177 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h +75 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c +270 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c +585 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c +420 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c +281 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c +1598 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h +354 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h +235 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas +599 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas +236 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/README +63 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c +837 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c +275 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt +10 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile +14 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c +674 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj +246 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln +78 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj +445 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj +566 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj +563 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj +948 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj +567 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj +870 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln +144 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj +1219 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.c +423 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.h +441 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.c +1736 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.h +331 -0
- data/ext/src/third-party/zlib-1.2.3/example.c +565 -0
- data/ext/src/third-party/zlib-1.2.3/examples/README.examples +42 -0
- data/ext/src/third-party/zlib-1.2.3/examples/fitblk.c +233 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gun.c +693 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzappend.c +500 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzjoin.c +448 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.c +413 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.h +58 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zlib_how.html +523 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zpipe.c +191 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zran.c +404 -0
- data/ext/src/third-party/zlib-1.2.3/gzio.c +1026 -0
- data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.h +11 -0
- data/ext/src/third-party/zlib-1.2.3/inffixed.h +94 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.c +1368 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.h +115 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.c +329 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/make_vms.com +461 -0
- data/ext/src/third-party/zlib-1.2.3/minigzip.c +322 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor +109 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2 +104 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc +106 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc +94 -0
- data/ext/src/third-party/zlib-1.2.3/old/Makefile.riscos +151 -0
- data/ext/src/third-party/zlib-1.2.3/old/README +3 -0
- data/ext/src/third-party/zlib-1.2.3/old/descrip.mms +48 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2 +136 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/zlib.def +51 -0
- data/ext/src/third-party/zlib-1.2.3/old/visual-basic.txt +160 -0
- data/ext/src/third-party/zlib-1.2.3/old/zlib.html +971 -0
- data/ext/src/third-party/zlib-1.2.3/projects/README.projects +41 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp +609 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw +59 -0
- data/ext/src/third-party/zlib-1.2.3/qnx/package.qpg +141 -0
- data/ext/src/third-party/zlib-1.2.3/trees.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/trees.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
- data/ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt +397 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.bor +107 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc +141 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.msc +126 -0
- data/ext/src/third-party/zlib-1.2.3/win32/VisualC.txt +3 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib.def +60 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib1.rc +39 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.in.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.3 +159 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.h +1357 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.h +269 -0
- data/lib/bio-velvet_underground.rb +12 -0
- data/lib/bio-velvet_underground/external/VERSION +1 -0
- data/lib/bio-velvet_underground/velvet_underground.rb +72 -0
- data/spec/binary_sequence_store_spec.rb +27 -0
- data/spec/data/1/CnyUnifiedSeq +0 -0
- data/spec/spec_helper.rb +31 -0
- metadata +456 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2007, 2008 Daniel Zerbino (zerbino@ebi.ac.uk)
|
3
|
+
|
4
|
+
This file is part of Velvet.
|
5
|
+
|
6
|
+
Velvet is free software; you can redistribute it and/or modify
|
7
|
+
it under the terms of the GNU General Public License as published by
|
8
|
+
the Free Software Foundation; either version 2 of the License, or
|
9
|
+
(at your option) any later version.
|
10
|
+
|
11
|
+
Velvet is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
GNU General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU General Public License
|
17
|
+
along with Velvet; if not, write to the Free Software
|
18
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
19
|
+
|
20
|
+
*/
|
21
|
+
#ifndef _LOCALLYCORRECTEDGRAPH_H_
|
22
|
+
#define _LOCALLYCORRECTEDGRAPH_H_
|
23
|
+
|
24
|
+
struct nodeList_st {
|
25
|
+
Node *node;
|
26
|
+
NodeList *previous;
|
27
|
+
NodeList *next;
|
28
|
+
} ATTRIBUTE_PACKED;
|
29
|
+
|
30
|
+
void prepareGraphForLocalCorrections(Graph * graph);
|
31
|
+
|
32
|
+
void correctGraphLocally(Node * start);
|
33
|
+
|
34
|
+
void deactivateLocalCorrectionSettings();
|
35
|
+
|
36
|
+
// Black arts:
|
37
|
+
void setLocalMaxReadLength(int value);
|
38
|
+
void setLocalMaxGaps(int value);
|
39
|
+
void setLocalMaxDivergence(double value);
|
40
|
+
#endif
|
@@ -0,0 +1,677 @@
|
|
1
|
+
/*
|
2
|
+
Copyright 2007, 2008 Daniel Zerbino (zerbino@ebi.ac.uk)
|
3
|
+
|
4
|
+
This file is part of Velvet.
|
5
|
+
|
6
|
+
Velvet is free software; you can redistribute it and/or modify
|
7
|
+
it under the terms of the GNU General Public License as published by
|
8
|
+
the Free Software Foundation; either version 2 of the License, or
|
9
|
+
(at your option) any later version.
|
10
|
+
|
11
|
+
Velvet is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
GNU General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU General Public License
|
17
|
+
along with Velvet; if not, write to the Free Software
|
18
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
19
|
+
|
20
|
+
*/
|
21
|
+
#include <stdlib.h>
|
22
|
+
#include <stdio.h>
|
23
|
+
#ifdef _OPENMP
|
24
|
+
#include <omp.h>
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#include "globals.h"
|
28
|
+
#include "allocArray.h"
|
29
|
+
#include "graph.h"
|
30
|
+
#include "recycleBin.h"
|
31
|
+
#include "passageMarker.h"
|
32
|
+
#include "tightString.h"
|
33
|
+
#include "utility.h"
|
34
|
+
|
35
|
+
typedef struct passage_st PassageMarker;
|
36
|
+
|
37
|
+
struct passage_st {
|
38
|
+
struct node_st *node;
|
39
|
+
PassageMarkerI nextInNode;
|
40
|
+
PassageMarkerI previousInNode;
|
41
|
+
PassageMarkerI twinMarker;
|
42
|
+
PassageMarkerI nextInSequence;
|
43
|
+
IDnum start;
|
44
|
+
IDnum finishOffset;
|
45
|
+
IDnum sequenceID;
|
46
|
+
boolean status;
|
47
|
+
} ATTRIBUTE_PACKED;
|
48
|
+
|
49
|
+
static AllocArray *markerMemory = NULL;
|
50
|
+
DECLARE_FAST_ACCESSORS (PM, PassageMarker, markerMemory)
|
51
|
+
|
52
|
+
static RecycleBin *listMemory = NULL;
|
53
|
+
static const int LISTBLOCKSIZE = 10000;
|
54
|
+
|
55
|
+
PassageMarkerI allocatePassageMarker()
|
56
|
+
{
|
57
|
+
if (markerMemory == NULL)
|
58
|
+
markerMemory =
|
59
|
+
newAllocArray (sizeof(PassageMarker), "PassageMarker");
|
60
|
+
|
61
|
+
return allocArrayAllocate (markerMemory);
|
62
|
+
}
|
63
|
+
|
64
|
+
static void deallocatePassageMarker(PassageMarkerI marker)
|
65
|
+
{
|
66
|
+
allocArrayFree(markerMemory, marker);
|
67
|
+
}
|
68
|
+
|
69
|
+
PassageMarkerList *allocatePassageMarkerList()
|
70
|
+
{
|
71
|
+
if (listMemory == NULL)
|
72
|
+
listMemory =
|
73
|
+
newRecycleBin(sizeof(PassageMarkerList),
|
74
|
+
LISTBLOCKSIZE);
|
75
|
+
|
76
|
+
return (PassageMarkerList *) allocatePointer(listMemory);
|
77
|
+
}
|
78
|
+
|
79
|
+
void deallocatePassageMarkerList(PassageMarkerList * marker)
|
80
|
+
{
|
81
|
+
deallocatePointer(listMemory, marker);
|
82
|
+
}
|
83
|
+
|
84
|
+
void setNextInSequence(PassageMarkerI previous, PassageMarkerI next)
|
85
|
+
{
|
86
|
+
if (previous == NULL_IDX)
|
87
|
+
return;
|
88
|
+
|
89
|
+
PM_FI2P (previous)->nextInSequence = next;
|
90
|
+
}
|
91
|
+
|
92
|
+
void extractPassageMarker(PassageMarkerI marker)
|
93
|
+
{
|
94
|
+
PassageMarker *twin;
|
95
|
+
PassageMarker *markerVal;
|
96
|
+
|
97
|
+
if (marker == NULL_IDX)
|
98
|
+
return;
|
99
|
+
|
100
|
+
markerVal = PM_FI2P (marker);
|
101
|
+
if (markerVal->node == NULL_IDX)
|
102
|
+
return;
|
103
|
+
|
104
|
+
if (markerVal->previousInNode == marker)
|
105
|
+
setMarker(markerVal->node, markerVal->nextInNode);
|
106
|
+
else
|
107
|
+
setNextInNode(markerVal->previousInNode, markerVal->nextInNode);
|
108
|
+
|
109
|
+
markerVal->previousInNode = NULL_IDX;
|
110
|
+
markerVal->nextInNode = NULL_IDX;
|
111
|
+
markerVal->node = NULL_IDX;
|
112
|
+
|
113
|
+
twin = PM_FI2P (markerVal->twinMarker);
|
114
|
+
twin->nextInNode = NULL_IDX;
|
115
|
+
twin->previousInNode = NULL_IDX;
|
116
|
+
twin->node = NULL_IDX;
|
117
|
+
}
|
118
|
+
|
119
|
+
void destroyPassageMarker(PassageMarkerI marker)
|
120
|
+
{
|
121
|
+
PassageMarker *markerVal;
|
122
|
+
PassageMarker *twinVal;
|
123
|
+
PassageMarkerI twin;
|
124
|
+
|
125
|
+
if (marker == NULL_IDX)
|
126
|
+
return;
|
127
|
+
|
128
|
+
markerVal = PM_FI2P (marker);
|
129
|
+
twin = markerVal->twinMarker;
|
130
|
+
extractPassageMarker(marker);
|
131
|
+
|
132
|
+
if (markerVal->nextInSequence != NULL_IDX
|
133
|
+
&& PM_FI2P (PM_FI2P (markerVal->nextInSequence)->twinMarker)->nextInSequence == twin)
|
134
|
+
PM_FI2P (PM_FI2P (markerVal->nextInSequence)->twinMarker)->nextInSequence = NULL_IDX;
|
135
|
+
|
136
|
+
twinVal = PM_FI2P (twin);
|
137
|
+
if (twinVal->nextInSequence != NULL_IDX
|
138
|
+
&& PM_FI2P (PM_FI2P (twinVal->nextInSequence)->twinMarker)->nextInSequence == marker)
|
139
|
+
PM_FI2P (PM_FI2P (twinVal->nextInSequence)->twinMarker)->nextInSequence = NULL_IDX;
|
140
|
+
|
141
|
+
deallocatePassageMarker(twin);
|
142
|
+
deallocatePassageMarker(marker);
|
143
|
+
|
144
|
+
//velvetLog("Done destroying passage marker\n");
|
145
|
+
}
|
146
|
+
|
147
|
+
void destroyAllPassageMarkers()
|
148
|
+
{
|
149
|
+
if (markerMemory != NULL)
|
150
|
+
destroyAllocArray(markerMemory);
|
151
|
+
if (listMemory != NULL)
|
152
|
+
destroyRecycleBin(listMemory);
|
153
|
+
}
|
154
|
+
|
155
|
+
|
156
|
+
void setPreviousInSequence(PassageMarkerI previous, PassageMarkerI next)
|
157
|
+
{
|
158
|
+
if (next == NULL_IDX)
|
159
|
+
return;
|
160
|
+
else if (previous == NULL_IDX)
|
161
|
+
PM_FI2P (PM_FI2P (next)->twinMarker)->nextInSequence = NULL_IDX;
|
162
|
+
else
|
163
|
+
PM_FI2P (PM_FI2P (next)->twinMarker)->nextInSequence = PM_FI2P (previous)->twinMarker;
|
164
|
+
}
|
165
|
+
|
166
|
+
void disconnectNextPassageMarker(PassageMarkerI marker, Graph * graph)
|
167
|
+
{
|
168
|
+
PassageMarkerI middle = getNextInSequence(marker);
|
169
|
+
PassageMarkerI next = getNextInSequence(middle);
|
170
|
+
|
171
|
+
setPreviousInSequence(marker, next);
|
172
|
+
concatenatePassageMarkers(marker, middle);
|
173
|
+
setNextInSequence(middle, NULL_IDX);
|
174
|
+
setPreviousInSequence(NULL_IDX, middle);
|
175
|
+
}
|
176
|
+
|
177
|
+
void deleteNextPassageMarker(PassageMarkerI marker, Graph * graph)
|
178
|
+
{
|
179
|
+
PassageMarkerI middle = getNextInSequence(marker);
|
180
|
+
PassageMarkerI next = getNextInSequence(middle);
|
181
|
+
|
182
|
+
setPreviousInSequence(marker, next);
|
183
|
+
setNextInSequence(marker, next);
|
184
|
+
setNextInSequence(middle, NULL_IDX);
|
185
|
+
setPreviousInSequence(NULL_IDX, middle);
|
186
|
+
}
|
187
|
+
|
188
|
+
PassageMarkerI getNextInNode(PassageMarkerI marker)
|
189
|
+
{
|
190
|
+
if (marker == NULL_IDX)
|
191
|
+
return NULL_IDX;
|
192
|
+
|
193
|
+
return PM_FI2P (marker)->nextInNode;
|
194
|
+
}
|
195
|
+
|
196
|
+
void setNextInNode(PassageMarkerI marker, PassageMarkerI next)
|
197
|
+
{
|
198
|
+
PassageMarker *markerVal;
|
199
|
+
|
200
|
+
// DEBUG
|
201
|
+
if (next == marker || next == getTwinMarker(marker))
|
202
|
+
abort();
|
203
|
+
|
204
|
+
if (marker == NULL_IDX)
|
205
|
+
return;
|
206
|
+
|
207
|
+
markerVal = PM_FI2P (marker);
|
208
|
+
if (next == NULL_IDX) {
|
209
|
+
markerVal->nextInNode = NULL_IDX;
|
210
|
+
PM_FI2P (markerVal->twinMarker)->nextInNode = NULL_IDX;
|
211
|
+
} else {
|
212
|
+
PassageMarker *nextVal;
|
213
|
+
|
214
|
+
if (markerVal->twinMarker == NULL_IDX) {
|
215
|
+
velvetLog("Dead marker in node %li %li\n",
|
216
|
+
(long) getNodeID(getNode(marker)),
|
217
|
+
(long) getPassageMarkerSequenceID(marker));
|
218
|
+
abort();
|
219
|
+
}
|
220
|
+
nextVal = PM_FI2P (next);
|
221
|
+
markerVal->nextInNode = next;
|
222
|
+
PM_FI2P (markerVal->twinMarker)->nextInNode = nextVal->twinMarker;
|
223
|
+
nextVal->previousInNode = marker;
|
224
|
+
PM_FI2P (nextVal->twinMarker)->previousInNode = markerVal->twinMarker;
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
void setTopOfTheNode(PassageMarkerI marker)
|
229
|
+
{
|
230
|
+
if (marker == NULL_IDX)
|
231
|
+
return;
|
232
|
+
|
233
|
+
PM_FI2P (marker)->previousInNode = marker;
|
234
|
+
}
|
235
|
+
|
236
|
+
PassageMarkerI getNextInSequence(PassageMarkerI marker)
|
237
|
+
{
|
238
|
+
if (marker != NULL_IDX)
|
239
|
+
{
|
240
|
+
PassageMarker *markerVal;
|
241
|
+
|
242
|
+
markerVal = PM_FI2P (marker);
|
243
|
+
if (markerVal->nextInSequence == NULL_IDX)
|
244
|
+
return NULL_IDX;
|
245
|
+
return markerVal->nextInSequence;
|
246
|
+
}
|
247
|
+
return NULL_IDX;
|
248
|
+
}
|
249
|
+
|
250
|
+
PassageMarkerI getPreviousInSequence(PassageMarkerI marker)
|
251
|
+
{
|
252
|
+
PassageMarker *twinVal;
|
253
|
+
|
254
|
+
if (marker == NULL_IDX)
|
255
|
+
return NULL_IDX;
|
256
|
+
|
257
|
+
twinVal = PM_FI2P (PM_FI2P (marker)->twinMarker);
|
258
|
+
if (twinVal->nextInSequence == NULL_IDX)
|
259
|
+
return NULL_IDX;
|
260
|
+
|
261
|
+
return PM_FI2P (twinVal->nextInSequence)->twinMarker;
|
262
|
+
}
|
263
|
+
|
264
|
+
void
|
265
|
+
connectPassageMarkers(PassageMarkerI previous, PassageMarkerI next,
|
266
|
+
Graph * graph)
|
267
|
+
{
|
268
|
+
if (previous != NULL_IDX)
|
269
|
+
setNextInSequence(previous, next);
|
270
|
+
|
271
|
+
if (next != NULL_IDX)
|
272
|
+
setPreviousInSequence(previous, next);
|
273
|
+
}
|
274
|
+
|
275
|
+
char *readPassageMarker(PassageMarkerI marker)
|
276
|
+
{
|
277
|
+
PassageMarker *markerVal;
|
278
|
+
char *s = mallocOrExit(100, char);
|
279
|
+
|
280
|
+
if (marker == NULL_IDX)
|
281
|
+
return s;
|
282
|
+
|
283
|
+
markerVal = PM_FI2P (marker);
|
284
|
+
sprintf(s, "MARKER %ld (%lld -> %lld):", (long) markerVal->sequenceID,
|
285
|
+
(long long) markerVal->start, (long long) getPassageMarkerFinish(marker));
|
286
|
+
|
287
|
+
if (getPreviousInSequence(marker) == NULL_IDX)
|
288
|
+
sprintf(s, "%s START -> %ld", s,
|
289
|
+
(long) getNodeID(getNode(marker)));
|
290
|
+
else
|
291
|
+
sprintf(s, "%s %ld -> %ld", s,
|
292
|
+
(long) getNodeID(getNode(getPreviousInSequence(marker))),
|
293
|
+
(long) getNodeID(getNode(marker)));
|
294
|
+
|
295
|
+
if (getNextInSequence(marker) == NULL_IDX)
|
296
|
+
sprintf(s, "%s -> FINISH", s);
|
297
|
+
else
|
298
|
+
sprintf(s, "%s -> %ld ", s,
|
299
|
+
(long) getNodeID(getNode(getNextInSequence(marker))));
|
300
|
+
|
301
|
+
return s;
|
302
|
+
}
|
303
|
+
|
304
|
+
PassageMarkerI addPassageMarker(IDnum sequenceID, Coordinate start,
|
305
|
+
Node * node)
|
306
|
+
{
|
307
|
+
PassageMarkerI marker = allocatePassageMarker();
|
308
|
+
PassageMarkerI twinMarker = allocatePassageMarker();
|
309
|
+
PassageMarker *markerVal;
|
310
|
+
PassageMarker *twinVal;
|
311
|
+
|
312
|
+
markerVal = PM_FI2P (marker);
|
313
|
+
twinVal = PM_FI2P (twinMarker);
|
314
|
+
|
315
|
+
markerVal->sequenceID = sequenceID;
|
316
|
+
markerVal->start = start;
|
317
|
+
markerVal->node = node;
|
318
|
+
markerVal->nextInSequence = NULL_IDX;
|
319
|
+
markerVal->finishOffset = 0;
|
320
|
+
markerVal->twinMarker = twinMarker;
|
321
|
+
markerVal->status = false;
|
322
|
+
|
323
|
+
twinVal->sequenceID = -sequenceID;
|
324
|
+
twinVal->start = start + getNodeLength(node);
|
325
|
+
twinVal->node = getTwinNode(node);
|
326
|
+
twinVal->nextInSequence = NULL_IDX;
|
327
|
+
twinVal->finishOffset = 0;
|
328
|
+
twinVal->twinMarker = marker;
|
329
|
+
twinVal->status = false;
|
330
|
+
|
331
|
+
setNextInNode(marker, getMarker(node));
|
332
|
+
setMarker(node, marker);
|
333
|
+
|
334
|
+
return marker;
|
335
|
+
}
|
336
|
+
|
337
|
+
PassageMarkerList *copyPassageMarkerList(PassageMarkerList * list)
|
338
|
+
{
|
339
|
+
PassageMarkerList *copy;
|
340
|
+
PassageMarkerList *result = NULL;
|
341
|
+
PassageMarkerList *pointer;
|
342
|
+
|
343
|
+
if (list == NULL)
|
344
|
+
return NULL;
|
345
|
+
|
346
|
+
for (pointer = list; pointer != NULL; pointer = pointer->next) {
|
347
|
+
copy = allocatePassageMarkerList();
|
348
|
+
copy->marker = pointer->marker;
|
349
|
+
copy->next = result;
|
350
|
+
result = copy;
|
351
|
+
}
|
352
|
+
|
353
|
+
return result;
|
354
|
+
}
|
355
|
+
|
356
|
+
void incrementFinishOffset(PassageMarkerI marker, Coordinate offset)
|
357
|
+
{
|
358
|
+
PM_FI2P (marker)->finishOffset += offset;
|
359
|
+
}
|
360
|
+
|
361
|
+
void incrementStartOffset(PassageMarkerI marker, Coordinate offset)
|
362
|
+
{
|
363
|
+
PM_FI2P (PM_FI2P (marker)->twinMarker)->finishOffset += offset;
|
364
|
+
}
|
365
|
+
|
366
|
+
Coordinate getFinishOffset(PassageMarkerI marker)
|
367
|
+
{
|
368
|
+
return PM_FI2P (marker)->finishOffset;
|
369
|
+
}
|
370
|
+
|
371
|
+
void setFinishOffset(PassageMarkerI marker, Coordinate offset)
|
372
|
+
{
|
373
|
+
PM_FI2P (marker)->finishOffset = offset;
|
374
|
+
}
|
375
|
+
|
376
|
+
Coordinate getStartOffset(PassageMarkerI marker)
|
377
|
+
{
|
378
|
+
return PM_FI2P (PM_FI2P (marker)->twinMarker)->finishOffset;
|
379
|
+
}
|
380
|
+
|
381
|
+
void setStartOffset(PassageMarkerI marker, Coordinate offset)
|
382
|
+
{
|
383
|
+
PM_FI2P (PM_FI2P (marker)->twinMarker)->finishOffset = offset;
|
384
|
+
}
|
385
|
+
|
386
|
+
void transposePassageMarker(PassageMarkerI marker, Node * node)
|
387
|
+
{
|
388
|
+
PassageMarker *markerVal;
|
389
|
+
PassageMarker *twinMarkerVal;
|
390
|
+
|
391
|
+
markerVal = PM_FI2P (marker);
|
392
|
+
twinMarkerVal = PM_FI2P (markerVal->twinMarker);
|
393
|
+
insertPassageMarker(marker, node);
|
394
|
+
markerVal->node = node;
|
395
|
+
insertPassageMarker(markerVal->twinMarker, getTwinNode(node));
|
396
|
+
twinMarkerVal->node = getTwinNode(node);
|
397
|
+
}
|
398
|
+
|
399
|
+
PassageMarkerI getTwinMarker(PassageMarkerI marker)
|
400
|
+
{
|
401
|
+
return PM_FI2P (marker)->twinMarker;
|
402
|
+
}
|
403
|
+
|
404
|
+
IDnum getPassageMarkerSequenceID(PassageMarkerI marker)
|
405
|
+
{
|
406
|
+
return PM_FI2P (marker)->sequenceID;
|
407
|
+
}
|
408
|
+
|
409
|
+
IDnum getAbsolutePassMarkerSeqID(PassageMarkerI marker)
|
410
|
+
{
|
411
|
+
IDnum ID = PM_FI2P (marker)->sequenceID;
|
412
|
+
|
413
|
+
if (ID > 0)
|
414
|
+
return ID;
|
415
|
+
else
|
416
|
+
return -ID;
|
417
|
+
}
|
418
|
+
|
419
|
+
Node *getNode(PassageMarkerI marker)
|
420
|
+
{
|
421
|
+
if (marker == NULL_IDX)
|
422
|
+
return NULL;
|
423
|
+
|
424
|
+
return PM_FI2P (marker)->node;
|
425
|
+
}
|
426
|
+
|
427
|
+
void concatenatePassageMarkers(PassageMarkerI marker,
|
428
|
+
PassageMarkerI next)
|
429
|
+
{
|
430
|
+
PassageMarker *markerVal;
|
431
|
+
PassageMarker *nextVal;
|
432
|
+
|
433
|
+
if (marker == NULL_IDX || next == NULL_IDX)
|
434
|
+
return;
|
435
|
+
|
436
|
+
markerVal = PM_FI2P (marker);
|
437
|
+
nextVal = PM_FI2P (next);
|
438
|
+
|
439
|
+
markerVal->finishOffset = nextVal->finishOffset;
|
440
|
+
PM_FI2P (markerVal->twinMarker)->start = PM_FI2P (nextVal->twinMarker)->start;
|
441
|
+
markerVal->nextInSequence = nextVal->nextInSequence;
|
442
|
+
}
|
443
|
+
|
444
|
+
boolean getPassageMarkerStatus(PassageMarkerI marker)
|
445
|
+
{
|
446
|
+
return PM_FI2P (marker)->status;
|
447
|
+
}
|
448
|
+
|
449
|
+
void setPassageMarkerStatus(PassageMarkerI marker, boolean status)
|
450
|
+
{
|
451
|
+
PassageMarker *markerVal = PM_FI2P (marker);
|
452
|
+
|
453
|
+
markerVal->status = status;
|
454
|
+
PM_FI2P (markerVal->twinMarker)->status = status;
|
455
|
+
}
|
456
|
+
|
457
|
+
boolean isDestinationToMarker(PassageMarkerI marker, Node * node)
|
458
|
+
{
|
459
|
+
PassageMarker *markerVal = PM_FI2P (marker);
|
460
|
+
|
461
|
+
if (markerVal->nextInSequence == NULL_IDX)
|
462
|
+
return false;
|
463
|
+
|
464
|
+
return PM_FI2P (markerVal->nextInSequence)->node == node;
|
465
|
+
}
|
466
|
+
|
467
|
+
boolean isTerminal(PassageMarkerI marker)
|
468
|
+
{
|
469
|
+
PassageMarker *markerVal;
|
470
|
+
|
471
|
+
if (marker == NULL_IDX)
|
472
|
+
return false;
|
473
|
+
|
474
|
+
markerVal = PM_FI2P (marker);
|
475
|
+
return markerVal->nextInSequence == NULL_IDX;
|
476
|
+
}
|
477
|
+
|
478
|
+
boolean isInitial(PassageMarkerI marker)
|
479
|
+
{
|
480
|
+
PassageMarker *markerVal;
|
481
|
+
|
482
|
+
if (marker == NULL_IDX)
|
483
|
+
return false;
|
484
|
+
|
485
|
+
markerVal = PM_FI2P (marker);
|
486
|
+
if (markerVal->twinMarker == NULL_IDX) {
|
487
|
+
velvetLog("Unpaired marker seq %ld start %lld node %ld\n",
|
488
|
+
(long) markerVal->sequenceID, (long long) markerVal->start,
|
489
|
+
(long) getNodeID(markerVal->node));
|
490
|
+
velvetLog("SNAFU\n");
|
491
|
+
abort();
|
492
|
+
}
|
493
|
+
|
494
|
+
return PM_FI2P (markerVal->twinMarker)->nextInSequence == NULL_IDX;
|
495
|
+
}
|
496
|
+
|
497
|
+
Coordinate getPassageMarkerStart(PassageMarkerI marker)
|
498
|
+
{
|
499
|
+
return PM_FI2P (marker)->start;
|
500
|
+
}
|
501
|
+
|
502
|
+
void setPassageMarkerStart(PassageMarkerI marker, Coordinate start)
|
503
|
+
{
|
504
|
+
PM_FI2P (marker)->start = start;
|
505
|
+
}
|
506
|
+
|
507
|
+
Coordinate getPassageMarkerFinish(PassageMarkerI marker)
|
508
|
+
{
|
509
|
+
PassageMarker *twinMarkerVal;
|
510
|
+
|
511
|
+
twinMarkerVal = PM_FI2P (PM_FI2P (marker)->twinMarker);
|
512
|
+
if (twinMarkerVal->start == -10)
|
513
|
+
return -10;
|
514
|
+
|
515
|
+
return twinMarkerVal->start;
|
516
|
+
}
|
517
|
+
|
518
|
+
void setPassageMarkerFinish(PassageMarkerI marker, Coordinate finish)
|
519
|
+
{
|
520
|
+
PassageMarker *twinMarkerVal;
|
521
|
+
|
522
|
+
twinMarkerVal = PM_FI2P (PM_FI2P (marker)->twinMarker);
|
523
|
+
if (finish == -10)
|
524
|
+
twinMarkerVal->start = -10;
|
525
|
+
|
526
|
+
twinMarkerVal->start = finish;
|
527
|
+
}
|
528
|
+
|
529
|
+
Coordinate getPassageMarkerLength(PassageMarkerI marker)
|
530
|
+
{
|
531
|
+
PassageMarker *markerVal;
|
532
|
+
PassageMarker *twinMarkerVal;
|
533
|
+
|
534
|
+
markerVal = PM_FI2P (marker);
|
535
|
+
twinMarkerVal = PM_FI2P (markerVal->twinMarker);
|
536
|
+
if (markerVal->start == -10 || twinMarkerVal->start == -10)
|
537
|
+
return 0;
|
538
|
+
|
539
|
+
else if (markerVal->sequenceID > 0)
|
540
|
+
return twinMarkerVal->start - markerVal->start;
|
541
|
+
else
|
542
|
+
return markerVal->start - twinMarkerVal->start;
|
543
|
+
}
|
544
|
+
|
545
|
+
int passageMarkerDirection(PassageMarkerI marker)
|
546
|
+
{
|
547
|
+
if (PM_FI2P (marker)->sequenceID > 0)
|
548
|
+
return 1;
|
549
|
+
else
|
550
|
+
return -1;
|
551
|
+
}
|
552
|
+
|
553
|
+
PassageMarkerI addUncertainPassageMarker(IDnum sequenceID, Node * node)
|
554
|
+
{
|
555
|
+
PassageMarkerI marker = allocatePassageMarker();
|
556
|
+
PassageMarkerI twinMarker = allocatePassageMarker();
|
557
|
+
PassageMarker *markerVal = PM_FI2P (marker);
|
558
|
+
PassageMarker *twinMarkerVal = PM_FI2P (twinMarker);
|
559
|
+
|
560
|
+
markerVal->sequenceID = sequenceID;
|
561
|
+
markerVal->start = -10;
|
562
|
+
markerVal->node = node;
|
563
|
+
markerVal->nextInSequence = NULL_IDX;
|
564
|
+
markerVal->finishOffset = 0;
|
565
|
+
markerVal->twinMarker = twinMarker;
|
566
|
+
markerVal->status = false;
|
567
|
+
|
568
|
+
twinMarkerVal->sequenceID = -sequenceID;
|
569
|
+
twinMarkerVal->start = -10;
|
570
|
+
if (node == NULL)
|
571
|
+
twinMarkerVal->node = NULL;
|
572
|
+
else
|
573
|
+
twinMarkerVal->node = getTwinNode(node);
|
574
|
+
twinMarkerVal->nextInSequence = NULL_IDX;
|
575
|
+
twinMarkerVal->finishOffset = 0;
|
576
|
+
twinMarkerVal->twinMarker = marker;
|
577
|
+
twinMarkerVal->status = false;
|
578
|
+
|
579
|
+
if (node != NULL) {
|
580
|
+
setNextInNode(marker, getMarker(node));
|
581
|
+
setMarker(node, marker);
|
582
|
+
}
|
583
|
+
|
584
|
+
return marker;
|
585
|
+
}
|
586
|
+
|
587
|
+
PassageMarkerList *newPassageMarkerList(PassageMarkerI marker,
|
588
|
+
PassageMarkerList * next)
|
589
|
+
{
|
590
|
+
PassageMarkerList *list = allocatePassageMarkerList();
|
591
|
+
list->marker = marker;
|
592
|
+
list->next = next;
|
593
|
+
return list;
|
594
|
+
}
|
595
|
+
|
596
|
+
PassageMarkerI newPassageMarker(IDnum seqID, Coordinate start,
|
597
|
+
Coordinate finish, Coordinate startOffset,
|
598
|
+
Coordinate finishOffset)
|
599
|
+
{
|
600
|
+
PassageMarkerI marker;
|
601
|
+
PassageMarkerI twinMarker;
|
602
|
+
PassageMarker *markerVal;
|
603
|
+
PassageMarker *twinMarkerVal;
|
604
|
+
|
605
|
+
#ifdef _OPENMP
|
606
|
+
#pragma omp critical
|
607
|
+
{
|
608
|
+
#endif
|
609
|
+
marker = allocatePassageMarker();
|
610
|
+
twinMarker = allocatePassageMarker();
|
611
|
+
#ifdef _OPENMP
|
612
|
+
}
|
613
|
+
#endif
|
614
|
+
markerVal = PM_FI2P (marker);
|
615
|
+
twinMarkerVal = PM_FI2P (twinMarker);
|
616
|
+
|
617
|
+
// velvetLog("Values %d\t%d\t%d\t%d\t%d\n", seqID, start, finish, startOffset, finishOffset);
|
618
|
+
|
619
|
+
markerVal->sequenceID = seqID;
|
620
|
+
markerVal->node = NULL;
|
621
|
+
markerVal->nextInSequence = NULL_IDX;
|
622
|
+
markerVal->twinMarker = twinMarker;
|
623
|
+
markerVal->nextInNode = NULL_IDX;
|
624
|
+
markerVal->status = false;
|
625
|
+
|
626
|
+
twinMarkerVal->sequenceID = -seqID;
|
627
|
+
twinMarkerVal->node = NULL;
|
628
|
+
twinMarkerVal->nextInSequence = NULL_IDX;
|
629
|
+
twinMarkerVal->twinMarker = marker;
|
630
|
+
twinMarkerVal->nextInNode = NULL_IDX;
|
631
|
+
twinMarkerVal->status = false;
|
632
|
+
|
633
|
+
setPassageMarkerStart(marker, start);
|
634
|
+
setPassageMarkerFinish(marker, finish);
|
635
|
+
setStartOffset(marker, startOffset);
|
636
|
+
setFinishOffset(marker, finishOffset);
|
637
|
+
|
638
|
+
if (getPassageMarkerLength(marker) < 0) {
|
639
|
+
velvetLog("Negative marker %ld %lld %lld %lld\n",
|
640
|
+
(long) getPassageMarkerSequenceID(marker),
|
641
|
+
(long long) getPassageMarkerStart(marker),
|
642
|
+
(long long) getPassageMarkerFinish(marker),
|
643
|
+
(long long) getPassageMarkerLength(marker));
|
644
|
+
abort();
|
645
|
+
}
|
646
|
+
|
647
|
+
return marker;
|
648
|
+
}
|
649
|
+
|
650
|
+
void exportMarker(FILE * outfile, PassageMarkerI marker,
|
651
|
+
TightString * sequences, int WORDLENGTH)
|
652
|
+
{
|
653
|
+
PassageMarker *markerVal = PM_FI2P (marker);
|
654
|
+
PassageMarkerI current;
|
655
|
+
|
656
|
+
if (markerVal->sequenceID > 0) {
|
657
|
+
if (!isInitial(marker)) {
|
658
|
+
return;
|
659
|
+
}
|
660
|
+
current = marker;
|
661
|
+
} else {
|
662
|
+
if (!isTerminal(marker)) {
|
663
|
+
return;
|
664
|
+
}
|
665
|
+
current = markerVal->twinMarker;
|
666
|
+
}
|
667
|
+
|
668
|
+
velvetFprintf(outfile, "SEQ\t%li\n", (long) PM_FI2P (current)->sequenceID);
|
669
|
+
for (; current != NULL_IDX; current = PM_FI2P (current)->nextInSequence) {
|
670
|
+
velvetFprintf(outfile, "%ld\t%lld\t%lld\t%lld\t%lld",
|
671
|
+
(long) getNodeID(PM_FI2P (current)->node), (long long) getStartOffset(current),
|
672
|
+
(long long) getPassageMarkerStart(current),
|
673
|
+
(long long) getPassageMarkerFinish(current),
|
674
|
+
(long long) getFinishOffset(current));
|
675
|
+
velvetFprintf(outfile, "\n");
|
676
|
+
}
|
677
|
+
}
|