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,12 @@
|
|
1
|
+
# Please require your code below, respecting the naming conventions in the
|
2
|
+
# bioruby directory tree.
|
3
|
+
#
|
4
|
+
# For example, say you have a plugin named bio-plugin, the only uncommented
|
5
|
+
# line in this file would be
|
6
|
+
#
|
7
|
+
# require 'bio/bio-plugin/plugin'
|
8
|
+
#
|
9
|
+
# In this file only require other files. Avoid other source code.
|
10
|
+
|
11
|
+
require 'bio-velvet_underground/velvet_underground.rb'
|
12
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
1
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require 'ffi'
|
2
|
+
require 'pry'
|
3
|
+
|
4
|
+
module Bio
|
5
|
+
module Velvet
|
6
|
+
class Underground
|
7
|
+
extend FFI::Library
|
8
|
+
ffi_lib File.join(File.dirname(__FILE__),'external','libvelvet.so.1.0')
|
9
|
+
|
10
|
+
class BinarySequenceStore
|
11
|
+
# Parse a CnyUnifiedSeq file in so that sequences can be accessed
|
12
|
+
def initialize(cny_unified_seq_file)
|
13
|
+
readset_pointer = Bio::Velvet::Underground.importCnyReadSet cny_unified_seq_file
|
14
|
+
@readset = Bio::Velvet::Underground::ReadSet.new(readset_pointer)
|
15
|
+
end
|
16
|
+
|
17
|
+
# Return a sequence from the store given its read ID.
|
18
|
+
def [](sequence_id)
|
19
|
+
if sequence_id==0 or sequence_id > @readset[:readCount]
|
20
|
+
raise "Invalid sequence_id #{sequence_id}"
|
21
|
+
end
|
22
|
+
|
23
|
+
pointer = Bio::Velvet::Underground.getTightStringInArray(
|
24
|
+
@readset[:tSequences], sequence_id-1
|
25
|
+
)
|
26
|
+
Bio::Velvet::Underground.readTightString pointer
|
27
|
+
end
|
28
|
+
|
29
|
+
# Number of sequences in this store
|
30
|
+
def length
|
31
|
+
@readset[:readCount]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
private
|
36
|
+
# struct readSet_st {
|
37
|
+
# char **sequences;
|
38
|
+
# TightString *tSequences;
|
39
|
+
# char **labels;
|
40
|
+
# char *tSeqMem;
|
41
|
+
# Quality **confidenceScores;
|
42
|
+
# Probability **kmerProbabilities;
|
43
|
+
# IDnum *mateReads;
|
44
|
+
# Category *categories;
|
45
|
+
# unsigned char *secondInPair;
|
46
|
+
# IDnum readCount;
|
47
|
+
# };
|
48
|
+
class ReadSet < FFI::Struct
|
49
|
+
layout :sequences, :pointer, # char **sequences;
|
50
|
+
:tSequences, :pointer, # TightString *tSequences;
|
51
|
+
:labels, :pointer, # char **labels;
|
52
|
+
:tSeqMem, :pointer, # char *tSeqMem; #TODO: they don't really mean char* here - meant as an unsigned short?
|
53
|
+
:confidenceScores, :pointer, # Quality **confidenceScores;
|
54
|
+
:kmerProbabilities, :pointer, # Probability **kmerProbabilities;
|
55
|
+
:mateReads, :pointer, # IDnum *mateReads;
|
56
|
+
:categories, :pointer, # Category *categories;
|
57
|
+
:secondInPair, :pointer, # unsigned char *secondInPair;
|
58
|
+
:readCount, :int32 # IDnum readCount;
|
59
|
+
end
|
60
|
+
|
61
|
+
# ReadSet *importCnyReadSet(char *filename);
|
62
|
+
attach_function :importCnyReadSet, [:string], :pointer
|
63
|
+
|
64
|
+
# char *readTightString(TightString * tString); #tightString.h
|
65
|
+
attach_function :readTightString, [:pointer], :string
|
66
|
+
|
67
|
+
# TightString *getTightStringInArray(TightString * tString,
|
68
|
+
# IDnum position);
|
69
|
+
attach_function :getTightStringInArray, [:pointer, :int32], :pointer
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe "binary sequence store" do
|
4
|
+
it "should be able to load sequences" do
|
5
|
+
path = File.join TEST_DATA_DIR, '1', 'CnyUnifiedSeq'
|
6
|
+
seqs = Bio::Velvet::Underground::BinarySequenceStore.new path
|
7
|
+
seqs[1].should == 'CACTTATCTCTACCAAAGATCACGATTTAGAATCAAACTATAAAGTTTTAGAAGATAAAGTAACAACTTATACATGGGGA'
|
8
|
+
seqs[77].should == 'CCTGTACCTGGAAGTGAAATACCAGCATAGTTTTTAATTTGTACATTAAATAATACATTGCCATCATTCATAGTAATATTATTTATTATACTTCCAGCTTCATTGCCATTAGTTACAGATATAGTTGCTTGACCAGTATACTCTCCATTATCATCTTTTTGAGCTGTTATAGTAACTTTTACTGGTTCTTTTAAAAGGCTATACCCTTTAGGAGCTTTTTCTTCTTTTATAAAGTAATCTCCTTCTTTTAAACCAGTAAATATAACTCGTCCATTTTTATCAGTTACACCCTTTCCTTTTAATAAAACCACATTTCCAGTAGAATCATACGTATATTTACCAATTACAT'
|
9
|
+
end
|
10
|
+
|
11
|
+
it "should be #length" do
|
12
|
+
path = File.join TEST_DATA_DIR, '1', 'CnyUnifiedSeq'
|
13
|
+
seqs = Bio::Velvet::Underground::BinarySequenceStore.new path
|
14
|
+
seqs.length.should == 77
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'should respect array boundaries' do
|
18
|
+
path = File.join TEST_DATA_DIR, '1', 'CnyUnifiedSeq'
|
19
|
+
seqs = Bio::Velvet::Underground::BinarySequenceStore.new path
|
20
|
+
expect {
|
21
|
+
seqs[0]
|
22
|
+
}.to raise_error
|
23
|
+
expect {
|
24
|
+
seqs[78]
|
25
|
+
}.to raise_error
|
26
|
+
end
|
27
|
+
end
|
Binary file
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
|
3
|
+
module SimpleCov::Configuration
|
4
|
+
def clean_filters
|
5
|
+
@filters = []
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
SimpleCov.configure do
|
10
|
+
clean_filters
|
11
|
+
load_adapter 'test_frameworks'
|
12
|
+
end
|
13
|
+
|
14
|
+
ENV["COVERAGE"] && SimpleCov.start do
|
15
|
+
add_filter "/.rvm/"
|
16
|
+
end
|
17
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
18
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
19
|
+
|
20
|
+
require 'rspec'
|
21
|
+
require 'bio-velvet_underground'
|
22
|
+
|
23
|
+
# Requires supporting files with custom matchers and macros, etc,
|
24
|
+
# in ./support/ and its subdirectories.
|
25
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
26
|
+
|
27
|
+
TEST_DATA_DIR=File.join File.dirname(__FILE__),'data'
|
28
|
+
|
29
|
+
RSpec.configure do |config|
|
30
|
+
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,456 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bio-velvet_underground
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ben Woodcroft
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-31 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: ffi
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: pry
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.8'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.8'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: shoulda
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: yard
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.7'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.7'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: jeweler
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: bundler
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.0.21
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 1.0.21
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: bio
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 1.4.2
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 1.4.2
|
139
|
+
description: Bindings to some internals of the velvet assembler.
|
140
|
+
email: donttrustben@gmail.com
|
141
|
+
executables: []
|
142
|
+
extensions:
|
143
|
+
- ext/mkrf_conf.rb
|
144
|
+
extra_rdoc_files:
|
145
|
+
- LICENSE.txt
|
146
|
+
- README.md
|
147
|
+
files:
|
148
|
+
- ".document"
|
149
|
+
- ".gitmodules"
|
150
|
+
- ".travis.yml"
|
151
|
+
- Gemfile
|
152
|
+
- LICENSE.txt
|
153
|
+
- README.md
|
154
|
+
- Rakefile
|
155
|
+
- VERSION
|
156
|
+
- ext/bioruby.patch
|
157
|
+
- ext/mkrf_conf.rb
|
158
|
+
- ext/src/Makefile
|
159
|
+
- ext/src/src/allocArray.c
|
160
|
+
- ext/src/src/allocArray.h
|
161
|
+
- ext/src/src/autoOpen.c
|
162
|
+
- ext/src/src/autoOpen.h
|
163
|
+
- ext/src/src/binarySequences.c
|
164
|
+
- ext/src/src/binarySequences.h
|
165
|
+
- ext/src/src/concatenatedGraph.c
|
166
|
+
- ext/src/src/concatenatedGraph.h
|
167
|
+
- ext/src/src/concatenatedPreGraph.c
|
168
|
+
- ext/src/src/concatenatedPreGraph.h
|
169
|
+
- ext/src/src/correctedGraph.c
|
170
|
+
- ext/src/src/correctedGraph.h
|
171
|
+
- ext/src/src/dfib.c
|
172
|
+
- ext/src/src/dfib.h
|
173
|
+
- ext/src/src/dfibHeap.c
|
174
|
+
- ext/src/src/dfibHeap.h
|
175
|
+
- ext/src/src/dfibpriv.h
|
176
|
+
- ext/src/src/fib.c
|
177
|
+
- ext/src/src/fib.h
|
178
|
+
- ext/src/src/fibHeap.c
|
179
|
+
- ext/src/src/fibHeap.h
|
180
|
+
- ext/src/src/fibpriv.h
|
181
|
+
- ext/src/src/globals.h
|
182
|
+
- ext/src/src/graph.c
|
183
|
+
- ext/src/src/graph.h
|
184
|
+
- ext/src/src/graphReConstruction.c
|
185
|
+
- ext/src/src/graphReConstruction.h
|
186
|
+
- ext/src/src/graphStats.c
|
187
|
+
- ext/src/src/graphStats.h
|
188
|
+
- ext/src/src/kmer.c
|
189
|
+
- ext/src/src/kmer.h
|
190
|
+
- ext/src/src/kmerOccurenceTable.c
|
191
|
+
- ext/src/src/kmerOccurenceTable.h
|
192
|
+
- ext/src/src/kseq.h
|
193
|
+
- ext/src/src/locallyCorrectedGraph.c
|
194
|
+
- ext/src/src/locallyCorrectedGraph.h
|
195
|
+
- ext/src/src/passageMarker.c
|
196
|
+
- ext/src/src/passageMarker.h
|
197
|
+
- ext/src/src/preGraph.c
|
198
|
+
- ext/src/src/preGraph.h
|
199
|
+
- ext/src/src/preGraphConstruction.c
|
200
|
+
- ext/src/src/preGraphConstruction.h
|
201
|
+
- ext/src/src/readCoherentGraph.c
|
202
|
+
- ext/src/src/readCoherentGraph.h
|
203
|
+
- ext/src/src/readSet.c
|
204
|
+
- ext/src/src/readSet.h
|
205
|
+
- ext/src/src/recycleBin.c
|
206
|
+
- ext/src/src/recycleBin.h
|
207
|
+
- ext/src/src/roadMap.c
|
208
|
+
- ext/src/src/roadMap.h
|
209
|
+
- ext/src/src/run.c
|
210
|
+
- ext/src/src/run.h
|
211
|
+
- ext/src/src/run2.c
|
212
|
+
- ext/src/src/scaffold.c
|
213
|
+
- ext/src/src/scaffold.h
|
214
|
+
- ext/src/src/shortReadPairs.c
|
215
|
+
- ext/src/src/shortReadPairs.h
|
216
|
+
- ext/src/src/splay.c
|
217
|
+
- ext/src/src/splay.h
|
218
|
+
- ext/src/src/splayTable.c
|
219
|
+
- ext/src/src/splayTable.h
|
220
|
+
- ext/src/src/tightString.c
|
221
|
+
- ext/src/src/tightString.h
|
222
|
+
- ext/src/src/utility.c
|
223
|
+
- ext/src/src/utility.h
|
224
|
+
- ext/src/third-party/zlib-1.2.3/ChangeLog
|
225
|
+
- ext/src/third-party/zlib-1.2.3/FAQ
|
226
|
+
- ext/src/third-party/zlib-1.2.3/INDEX
|
227
|
+
- ext/src/third-party/zlib-1.2.3/Makefile
|
228
|
+
- ext/src/third-party/zlib-1.2.3/Makefile.in
|
229
|
+
- ext/src/third-party/zlib-1.2.3/README
|
230
|
+
- ext/src/third-party/zlib-1.2.3/adler32.c
|
231
|
+
- ext/src/third-party/zlib-1.2.3/algorithm.txt
|
232
|
+
- ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup
|
233
|
+
- ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas
|
234
|
+
- ext/src/third-party/zlib-1.2.3/as400/bndsrc
|
235
|
+
- ext/src/third-party/zlib-1.2.3/as400/compile.clp
|
236
|
+
- ext/src/third-party/zlib-1.2.3/as400/readme.txt
|
237
|
+
- ext/src/third-party/zlib-1.2.3/as400/zlib.inc
|
238
|
+
- ext/src/third-party/zlib-1.2.3/compress.c
|
239
|
+
- ext/src/third-party/zlib-1.2.3/configure
|
240
|
+
- ext/src/third-party/zlib-1.2.3/contrib/README.contrib
|
241
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb
|
242
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb
|
243
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb
|
244
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt
|
245
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb
|
246
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb
|
247
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads
|
248
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb
|
249
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads
|
250
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb
|
251
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads
|
252
|
+
- ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr
|
253
|
+
- ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586
|
254
|
+
- ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S
|
255
|
+
- ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686
|
256
|
+
- ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S
|
257
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile
|
258
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/README
|
259
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c
|
260
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h
|
261
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk
|
262
|
+
- ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt
|
263
|
+
- ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas
|
264
|
+
- ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas
|
265
|
+
- ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt
|
266
|
+
- ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak
|
267
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build
|
268
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm
|
269
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln
|
270
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs
|
271
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs
|
272
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs
|
273
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs
|
274
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs
|
275
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs
|
276
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj
|
277
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs
|
278
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs
|
279
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs
|
280
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt
|
281
|
+
- ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt
|
282
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/README
|
283
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c
|
284
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h
|
285
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h
|
286
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h
|
287
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c
|
288
|
+
- ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h
|
289
|
+
- ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c
|
290
|
+
- ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S
|
291
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp
|
292
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp
|
293
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h
|
294
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h
|
295
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp
|
296
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream3/README
|
297
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO
|
298
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc
|
299
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc
|
300
|
+
- ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h
|
301
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm
|
302
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat
|
303
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm
|
304
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj
|
305
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c
|
306
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm
|
307
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj
|
308
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt
|
309
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat
|
310
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm
|
311
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj
|
312
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c
|
313
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm
|
314
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj
|
315
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat
|
316
|
+
- ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt
|
317
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip
|
318
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile
|
319
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h
|
320
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c
|
321
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h
|
322
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c
|
323
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h
|
324
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c
|
325
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c
|
326
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c
|
327
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h
|
328
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c
|
329
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h
|
330
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c
|
331
|
+
- ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h
|
332
|
+
- ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas
|
333
|
+
- ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt
|
334
|
+
- ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak
|
335
|
+
- ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas
|
336
|
+
- ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile
|
337
|
+
- ext/src/third-party/zlib-1.2.3/contrib/puff/README
|
338
|
+
- ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c
|
339
|
+
- ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h
|
340
|
+
- ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw
|
341
|
+
- ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c
|
342
|
+
- ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt
|
343
|
+
- ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile
|
344
|
+
- ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc
|
345
|
+
- ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c
|
346
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt
|
347
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj
|
348
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj
|
349
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj
|
350
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc
|
351
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj
|
352
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def
|
353
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln
|
354
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj
|
355
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj
|
356
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj
|
357
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj
|
358
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj
|
359
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc
|
360
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj
|
361
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def
|
362
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln
|
363
|
+
- ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj
|
364
|
+
- ext/src/third-party/zlib-1.2.3/crc32.c
|
365
|
+
- ext/src/third-party/zlib-1.2.3/crc32.h
|
366
|
+
- ext/src/third-party/zlib-1.2.3/deflate.c
|
367
|
+
- ext/src/third-party/zlib-1.2.3/deflate.h
|
368
|
+
- ext/src/third-party/zlib-1.2.3/example.c
|
369
|
+
- ext/src/third-party/zlib-1.2.3/examples/README.examples
|
370
|
+
- ext/src/third-party/zlib-1.2.3/examples/fitblk.c
|
371
|
+
- ext/src/third-party/zlib-1.2.3/examples/gun.c
|
372
|
+
- ext/src/third-party/zlib-1.2.3/examples/gzappend.c
|
373
|
+
- ext/src/third-party/zlib-1.2.3/examples/gzjoin.c
|
374
|
+
- ext/src/third-party/zlib-1.2.3/examples/gzlog.c
|
375
|
+
- ext/src/third-party/zlib-1.2.3/examples/gzlog.h
|
376
|
+
- ext/src/third-party/zlib-1.2.3/examples/zlib_how.html
|
377
|
+
- ext/src/third-party/zlib-1.2.3/examples/zpipe.c
|
378
|
+
- ext/src/third-party/zlib-1.2.3/examples/zran.c
|
379
|
+
- ext/src/third-party/zlib-1.2.3/gzio.c
|
380
|
+
- ext/src/third-party/zlib-1.2.3/infback.c
|
381
|
+
- ext/src/third-party/zlib-1.2.3/inffast.c
|
382
|
+
- ext/src/third-party/zlib-1.2.3/inffast.h
|
383
|
+
- ext/src/third-party/zlib-1.2.3/inffixed.h
|
384
|
+
- ext/src/third-party/zlib-1.2.3/inflate.c
|
385
|
+
- ext/src/third-party/zlib-1.2.3/inflate.h
|
386
|
+
- ext/src/third-party/zlib-1.2.3/inftrees.c
|
387
|
+
- ext/src/third-party/zlib-1.2.3/inftrees.h
|
388
|
+
- ext/src/third-party/zlib-1.2.3/make_vms.com
|
389
|
+
- ext/src/third-party/zlib-1.2.3/minigzip.c
|
390
|
+
- ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor
|
391
|
+
- ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2
|
392
|
+
- ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx
|
393
|
+
- ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc
|
394
|
+
- ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc
|
395
|
+
- ext/src/third-party/zlib-1.2.3/old/Makefile.riscos
|
396
|
+
- ext/src/third-party/zlib-1.2.3/old/README
|
397
|
+
- ext/src/third-party/zlib-1.2.3/old/descrip.mms
|
398
|
+
- ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2
|
399
|
+
- ext/src/third-party/zlib-1.2.3/old/os2/zlib.def
|
400
|
+
- ext/src/third-party/zlib-1.2.3/old/visual-basic.txt
|
401
|
+
- ext/src/third-party/zlib-1.2.3/old/zlib.html
|
402
|
+
- ext/src/third-party/zlib-1.2.3/projects/README.projects
|
403
|
+
- ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt
|
404
|
+
- ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp
|
405
|
+
- ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp
|
406
|
+
- ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp
|
407
|
+
- ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw
|
408
|
+
- ext/src/third-party/zlib-1.2.3/qnx/package.qpg
|
409
|
+
- ext/src/third-party/zlib-1.2.3/trees.c
|
410
|
+
- ext/src/third-party/zlib-1.2.3/trees.h
|
411
|
+
- ext/src/third-party/zlib-1.2.3/uncompr.c
|
412
|
+
- ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt
|
413
|
+
- ext/src/third-party/zlib-1.2.3/win32/Makefile.bor
|
414
|
+
- ext/src/third-party/zlib-1.2.3/win32/Makefile.emx
|
415
|
+
- ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc
|
416
|
+
- ext/src/third-party/zlib-1.2.3/win32/Makefile.msc
|
417
|
+
- ext/src/third-party/zlib-1.2.3/win32/VisualC.txt
|
418
|
+
- ext/src/third-party/zlib-1.2.3/win32/zlib.def
|
419
|
+
- ext/src/third-party/zlib-1.2.3/win32/zlib1.rc
|
420
|
+
- ext/src/third-party/zlib-1.2.3/zconf.h
|
421
|
+
- ext/src/third-party/zlib-1.2.3/zconf.in.h
|
422
|
+
- ext/src/third-party/zlib-1.2.3/zlib.3
|
423
|
+
- ext/src/third-party/zlib-1.2.3/zlib.h
|
424
|
+
- ext/src/third-party/zlib-1.2.3/zutil.c
|
425
|
+
- ext/src/third-party/zlib-1.2.3/zutil.h
|
426
|
+
- lib/bio-velvet_underground.rb
|
427
|
+
- lib/bio-velvet_underground/external/VERSION
|
428
|
+
- lib/bio-velvet_underground/velvet_underground.rb
|
429
|
+
- spec/binary_sequence_store_spec.rb
|
430
|
+
- spec/data/1/CnyUnifiedSeq
|
431
|
+
- spec/spec_helper.rb
|
432
|
+
homepage: http://github.com/wwood/bioruby-velvet_underground
|
433
|
+
licenses:
|
434
|
+
- GPL
|
435
|
+
metadata: {}
|
436
|
+
post_install_message:
|
437
|
+
rdoc_options: []
|
438
|
+
require_paths:
|
439
|
+
- lib
|
440
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
441
|
+
requirements:
|
442
|
+
- - ">="
|
443
|
+
- !ruby/object:Gem::Version
|
444
|
+
version: '0'
|
445
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
446
|
+
requirements:
|
447
|
+
- - ">="
|
448
|
+
- !ruby/object:Gem::Version
|
449
|
+
version: '0'
|
450
|
+
requirements: []
|
451
|
+
rubyforge_project:
|
452
|
+
rubygems_version: 2.2.2
|
453
|
+
signing_key:
|
454
|
+
specification_version: 4
|
455
|
+
summary: Bindings to some internals of the velvet assembler
|
456
|
+
test_files: []
|