bio-samtools 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bio-samtools.gemspec +60 -6
- data/doc/Bio.html +171 -0
- data/doc/Bio/DB.html +163 -0
- data/doc/Bio/DB/Alignment.html +780 -0
- data/doc/Bio/DB/SAM.html +1241 -0
- data/doc/Bio/DB/SAM/Library.html +217 -0
- data/doc/Bio/DB/SAM/Tools.html +331 -0
- data/doc/Bio/DB/SAM/Tools/Bam1CoreT.html +159 -0
- data/doc/Bio/DB/SAM/Tools/Bam1T.html +220 -0
- data/doc/Bio/DB/SAM/Tools/BamHeaderT.html +249 -0
- data/doc/Bio/DB/SAM/Tools/BamPileup1T.html +159 -0
- data/doc/Bio/DB/SAM/Tools/SamfileT.html +171 -0
- data/doc/Bio/DB/SAM/Tools/SamfileTX.html +159 -0
- data/doc/Bio/DB/SAMException.html +205 -0
- data/doc/Bio/DB/Tag.html +254 -0
- data/doc/LICENSE_txt.html +881 -0
- data/doc/LibC.html +153 -0
- data/doc/Pileup.html +571 -0
- data/doc/Vcf.html +473 -0
- data/doc/created.rid +10 -1
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +109 -21
- data/doc/js/darkfish.js +153 -0
- data/doc/js/jquery.js +18 -0
- data/doc/js/navigation.js +142 -0
- data/doc/js/search.js +94 -0
- data/doc/js/search_index.js +1 -0
- data/doc/js/searcher.js +228 -0
- data/doc/lib/bio-samtools_rb.html +115 -0
- data/doc/lib/bio/db/sam/bam_rb.html +121 -0
- data/doc/lib/bio/db/sam/faidx_rb.html +117 -0
- data/doc/lib/bio/db/sam/library_rb.html +115 -0
- data/doc/lib/bio/db/sam/pileup_rb.html +171 -0
- data/doc/lib/bio/db/sam/sam_rb.html +121 -0
- data/doc/lib/bio/db/sam/vcf_rb.html +124 -0
- data/doc/lib/bio/db/sam_rb.html +115 -0
- data/doc/rdoc.css +543 -0
- data/doc/table_of_contents.html +186 -0
- data/ext/Makefile-bioruby.patch +1 -1
- data/ext/Rakefile +8 -1
- data/ext/mkrf_conf.rb +8 -1
- data/lib/bio/db/sam.rb +140 -27
- data/lib/bio/db/sam/vcf.rb +0 -1
- data/test/basictest.rb +4 -4
- data/test/test_basic.rb +50 -34
- metadata +79 -25
- data/test/coverage.rb +0 -26
- data/test/coverage_plot.rb +0 -28
- data/test/feature.rb +0 -0
- data/test/test_pileup.rb +0 -68
@@ -0,0 +1,217 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>Module: Bio::DB::SAM::Library</title>
|
8
|
+
|
9
|
+
<link type="text/css" media="screen" href="../../../rdoc.css" rel="stylesheet">
|
10
|
+
|
11
|
+
<script type="text/javascript">
|
12
|
+
var rdoc_rel_prefix = "../../../";
|
13
|
+
</script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
|
16
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/navigation.js"></script>
|
17
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/search_index.js"></script>
|
18
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/search.js"></script>
|
19
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/searcher.js"></script>
|
20
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/darkfish.js"></script>
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" class="module">
|
24
|
+
<nav id="metadata">
|
25
|
+
<nav id="home-section" class="section">
|
26
|
+
<h3 class="section-header">
|
27
|
+
<a href="../../../index.html">Home</a>
|
28
|
+
<a href="../../../table_of_contents.html#classes">Classes</a>
|
29
|
+
<a href="../../../table_of_contents.html#methods">Methods</a>
|
30
|
+
</h3>
|
31
|
+
</nav>
|
32
|
+
|
33
|
+
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
36
|
+
<h3 class="section-header">
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
+
</h3>
|
40
|
+
</form>
|
41
|
+
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
+
</nav>
|
44
|
+
|
45
|
+
|
46
|
+
<div id="file-metadata">
|
47
|
+
<nav id="file-list-section" class="section">
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
49
|
+
<ul>
|
50
|
+
<li>lib/bio/db/sam/library.rb
|
51
|
+
</ul>
|
52
|
+
</nav>
|
53
|
+
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<div id="class-metadata">
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<!-- Method Quickref -->
|
62
|
+
<nav id="method-list-section" class="section">
|
63
|
+
<h3 class="section-header">Methods</h3>
|
64
|
+
|
65
|
+
<ul class="link-list">
|
66
|
+
|
67
|
+
<li><a href="#method-c-filename">::filename</a>
|
68
|
+
|
69
|
+
</ul>
|
70
|
+
</nav>
|
71
|
+
|
72
|
+
</div>
|
73
|
+
|
74
|
+
<div id="project-metadata">
|
75
|
+
<nav id="fileindex-section" class="section project-section">
|
76
|
+
<h3 class="section-header">Pages</h3>
|
77
|
+
|
78
|
+
<ul>
|
79
|
+
|
80
|
+
<li class="file"><a href="../../../LICENSE_txt.html">LICENSE</a>
|
81
|
+
|
82
|
+
</ul>
|
83
|
+
</nav>
|
84
|
+
|
85
|
+
<nav id="classindex-section" class="section project-section">
|
86
|
+
<h3 class="section-header">Class and Module Index</h3>
|
87
|
+
|
88
|
+
<ul class="link-list">
|
89
|
+
|
90
|
+
<li><a href="../../../Bio.html">Bio</a>
|
91
|
+
|
92
|
+
<li><a href="../../../Bio/DB.html">Bio::DB</a>
|
93
|
+
|
94
|
+
<li><a href="../../../Bio/DB/Alignment.html">Bio::DB::Alignment</a>
|
95
|
+
|
96
|
+
<li><a href="../../../Bio/DB/SAM.html">Bio::DB::SAM</a>
|
97
|
+
|
98
|
+
<li><a href="../../../Bio/DB/SAM/Library.html">Bio::DB::SAM::Library</a>
|
99
|
+
|
100
|
+
<li><a href="../../../Bio/DB/SAM/Tools.html">Bio::DB::SAM::Tools</a>
|
101
|
+
|
102
|
+
<li><a href="../../../Bio/DB/SAM/Tools/Bam1CoreT.html">Bio::DB::SAM::Tools::Bam1CoreT</a>
|
103
|
+
|
104
|
+
<li><a href="../../../Bio/DB/SAM/Tools/Bam1T.html">Bio::DB::SAM::Tools::Bam1T</a>
|
105
|
+
|
106
|
+
<li><a href="../../../Bio/DB/SAM/Tools/BamHeaderT.html">Bio::DB::SAM::Tools::BamHeaderT</a>
|
107
|
+
|
108
|
+
<li><a href="../../../Bio/DB/SAM/Tools/BamPileup1T.html">Bio::DB::SAM::Tools::BamPileup1T</a>
|
109
|
+
|
110
|
+
<li><a href="../../../Bio/DB/SAM/Tools/SamfileT.html">Bio::DB::SAM::Tools::SamfileT</a>
|
111
|
+
|
112
|
+
<li><a href="../../../Bio/DB/SAM/Tools/SamfileTX.html">Bio::DB::SAM::Tools::SamfileTX</a>
|
113
|
+
|
114
|
+
<li><a href="../../../Bio/DB/SAMException.html">Bio::DB::SAMException</a>
|
115
|
+
|
116
|
+
<li><a href="../../../Bio/DB/Sam.html">Bio::DB::Sam</a>
|
117
|
+
|
118
|
+
<li><a href="../../../Bio/DB/Tag.html">Bio::DB::Tag</a>
|
119
|
+
|
120
|
+
<li><a href="../../../LibC.html">LibC</a>
|
121
|
+
|
122
|
+
<li><a href="../../../Pileup.html">Pileup</a>
|
123
|
+
|
124
|
+
<li><a href="../../../Vcf.html">Vcf</a>
|
125
|
+
|
126
|
+
</ul>
|
127
|
+
</nav>
|
128
|
+
|
129
|
+
</div>
|
130
|
+
</nav>
|
131
|
+
|
132
|
+
<div id="documentation">
|
133
|
+
<h1 class="module">module Bio::DB::SAM::Library</h1>
|
134
|
+
|
135
|
+
<div id="description" class="description">
|
136
|
+
|
137
|
+
</div><!-- description -->
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
<!-- Methods -->
|
152
|
+
|
153
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section section">
|
154
|
+
<h3 class="section-header">Public Class Methods</h3>
|
155
|
+
|
156
|
+
|
157
|
+
<div id="method-c-filename" class="method-detail ">
|
158
|
+
|
159
|
+
<div class="method-heading">
|
160
|
+
<span class="method-name">filename</span><span
|
161
|
+
class="method-args">()</span>
|
162
|
+
<span class="method-click-advice">click to toggle source</span>
|
163
|
+
</div>
|
164
|
+
|
165
|
+
|
166
|
+
<div class="method-description">
|
167
|
+
|
168
|
+
<p>Return the path with the file name of the library for the specific
|
169
|
+
operating system</p>
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
<div class="method-source-code" id="filename-source">
|
174
|
+
<pre><span class="ruby-comment"># File lib/bio/db/sam/library.rb, line 8</span>
|
175
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier">filename</span>
|
176
|
+
<span class="ruby-comment">#TODO refactor this piece of code in all the files</span>
|
177
|
+
<span class="ruby-identifier">lib_os</span> = <span class="ruby-keyword">case</span> <span class="ruby-constant">RUBY_PLATFORM</span>
|
178
|
+
<span class="ruby-keyword">when</span> <span class="ruby-regexp">/linux/</span>
|
179
|
+
<span class="ruby-string">'so.1'</span>
|
180
|
+
<span class="ruby-keyword">when</span> <span class="ruby-regexp">/darwin/</span>
|
181
|
+
<span class="ruby-string">'1.dylib'</span>
|
182
|
+
<span class="ruby-keyword">when</span> <span class="ruby-regexp">/windows/</span>
|
183
|
+
<span class="ruby-string">'dll'</span>
|
184
|
+
<span class="ruby-keyword">else</span>
|
185
|
+
<span class="ruby-keyword">case</span> <span class="ruby-constant">RUBY_DESCRIPTION</span>
|
186
|
+
<span class="ruby-keyword">when</span> <span class="ruby-regexp">/darwin.*java/</span>
|
187
|
+
<span class="ruby-string">'1.dylib'</span>
|
188
|
+
<span class="ruby-keyword">when</span> <span class="ruby-regexp">/linux.*java/</span>
|
189
|
+
<span class="ruby-string">'so.1'</span>
|
190
|
+
<span class="ruby-keyword">end</span>
|
191
|
+
<span class="ruby-keyword">end</span>
|
192
|
+
|
193
|
+
<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">expand_path</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">dirname</span>(<span class="ruby-keyword">__FILE__</span>)),<span class="ruby-string">'external'</span>,<span class="ruby-node">"libbam.#{lib_os}"</span>)
|
194
|
+
<span class="ruby-keyword">end</span></pre>
|
195
|
+
</div><!-- filename-source -->
|
196
|
+
|
197
|
+
</div>
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
</div><!-- filename-method -->
|
203
|
+
|
204
|
+
|
205
|
+
</section><!-- public-class-method-details -->
|
206
|
+
|
207
|
+
</section><!-- 5Buntitled-5D -->
|
208
|
+
|
209
|
+
</div><!-- documentation -->
|
210
|
+
|
211
|
+
|
212
|
+
<footer id="validator-badges">
|
213
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
214
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.11.
|
215
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
216
|
+
</footer>
|
217
|
+
|
@@ -0,0 +1,331 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
|
6
|
+
|
7
|
+
<title>Module: Bio::DB::SAM::Tools</title>
|
8
|
+
|
9
|
+
<link type="text/css" media="screen" href="../../../rdoc.css" rel="stylesheet">
|
10
|
+
|
11
|
+
<script type="text/javascript">
|
12
|
+
var rdoc_rel_prefix = "../../../";
|
13
|
+
</script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
|
16
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/navigation.js"></script>
|
17
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/search_index.js"></script>
|
18
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/search.js"></script>
|
19
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/searcher.js"></script>
|
20
|
+
<script type="text/javascript" charset="utf-8" src="../../../js/darkfish.js"></script>
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" class="module">
|
24
|
+
<nav id="metadata">
|
25
|
+
<nav id="home-section" class="section">
|
26
|
+
<h3 class="section-header">
|
27
|
+
<a href="../../../index.html">Home</a>
|
28
|
+
<a href="../../../table_of_contents.html#classes">Classes</a>
|
29
|
+
<a href="../../../table_of_contents.html#methods">Methods</a>
|
30
|
+
</h3>
|
31
|
+
</nav>
|
32
|
+
|
33
|
+
|
34
|
+
<nav id="search-section" class="section project-section" class="initially-hidden">
|
35
|
+
<form action="#" method="get" accept-charset="utf-8">
|
36
|
+
<h3 class="section-header">
|
37
|
+
<input type="text" name="search" placeholder="Search" id="search-field"
|
38
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
39
|
+
</h3>
|
40
|
+
</form>
|
41
|
+
|
42
|
+
<ul id="search-results" class="initially-hidden"></ul>
|
43
|
+
</nav>
|
44
|
+
|
45
|
+
|
46
|
+
<div id="file-metadata">
|
47
|
+
<nav id="file-list-section" class="section">
|
48
|
+
<h3 class="section-header">Defined In</h3>
|
49
|
+
<ul>
|
50
|
+
<li>lib/bio/db/sam/bam.rb
|
51
|
+
<li>lib/bio/db/sam/faidx.rb
|
52
|
+
<li>lib/bio/db/sam/sam.rb
|
53
|
+
</ul>
|
54
|
+
</nav>
|
55
|
+
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<div id="class-metadata">
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
<!-- Method Quickref -->
|
64
|
+
<nav id="method-list-section" class="section">
|
65
|
+
<h3 class="section-header">Methods</h3>
|
66
|
+
|
67
|
+
<ul class="link-list">
|
68
|
+
|
69
|
+
<li><a href="#method-c-bam_sort">::bam_sort</a>
|
70
|
+
|
71
|
+
</ul>
|
72
|
+
</nav>
|
73
|
+
|
74
|
+
</div>
|
75
|
+
|
76
|
+
<div id="project-metadata">
|
77
|
+
<nav id="fileindex-section" class="section project-section">
|
78
|
+
<h3 class="section-header">Pages</h3>
|
79
|
+
|
80
|
+
<ul>
|
81
|
+
|
82
|
+
<li class="file"><a href="../../../LICENSE_txt.html">LICENSE</a>
|
83
|
+
|
84
|
+
</ul>
|
85
|
+
</nav>
|
86
|
+
|
87
|
+
<nav id="classindex-section" class="section project-section">
|
88
|
+
<h3 class="section-header">Class and Module Index</h3>
|
89
|
+
|
90
|
+
<ul class="link-list">
|
91
|
+
|
92
|
+
<li><a href="../../../Bio.html">Bio</a>
|
93
|
+
|
94
|
+
<li><a href="../../../Bio/DB.html">Bio::DB</a>
|
95
|
+
|
96
|
+
<li><a href="../../../Bio/DB/Alignment.html">Bio::DB::Alignment</a>
|
97
|
+
|
98
|
+
<li><a href="../../../Bio/DB/SAM.html">Bio::DB::SAM</a>
|
99
|
+
|
100
|
+
<li><a href="../../../Bio/DB/SAM/Library.html">Bio::DB::SAM::Library</a>
|
101
|
+
|
102
|
+
<li><a href="../../../Bio/DB/SAM/Tools.html">Bio::DB::SAM::Tools</a>
|
103
|
+
|
104
|
+
<li><a href="../../../Bio/DB/SAM/Tools/Bam1CoreT.html">Bio::DB::SAM::Tools::Bam1CoreT</a>
|
105
|
+
|
106
|
+
<li><a href="../../../Bio/DB/SAM/Tools/Bam1T.html">Bio::DB::SAM::Tools::Bam1T</a>
|
107
|
+
|
108
|
+
<li><a href="../../../Bio/DB/SAM/Tools/BamHeaderT.html">Bio::DB::SAM::Tools::BamHeaderT</a>
|
109
|
+
|
110
|
+
<li><a href="../../../Bio/DB/SAM/Tools/BamPileup1T.html">Bio::DB::SAM::Tools::BamPileup1T</a>
|
111
|
+
|
112
|
+
<li><a href="../../../Bio/DB/SAM/Tools/SamfileT.html">Bio::DB::SAM::Tools::SamfileT</a>
|
113
|
+
|
114
|
+
<li><a href="../../../Bio/DB/SAM/Tools/SamfileTX.html">Bio::DB::SAM::Tools::SamfileTX</a>
|
115
|
+
|
116
|
+
<li><a href="../../../Bio/DB/SAMException.html">Bio::DB::SAMException</a>
|
117
|
+
|
118
|
+
<li><a href="../../../Bio/DB/Sam.html">Bio::DB::Sam</a>
|
119
|
+
|
120
|
+
<li><a href="../../../Bio/DB/Tag.html">Bio::DB::Tag</a>
|
121
|
+
|
122
|
+
<li><a href="../../../LibC.html">LibC</a>
|
123
|
+
|
124
|
+
<li><a href="../../../Pileup.html">Pileup</a>
|
125
|
+
|
126
|
+
<li><a href="../../../Vcf.html">Vcf</a>
|
127
|
+
|
128
|
+
</ul>
|
129
|
+
</nav>
|
130
|
+
|
131
|
+
</div>
|
132
|
+
</nav>
|
133
|
+
|
134
|
+
<div id="documentation">
|
135
|
+
<h1 class="module">module Bio::DB::SAM::Tools</h1>
|
136
|
+
|
137
|
+
<div id="description" class="description">
|
138
|
+
|
139
|
+
</div><!-- description -->
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
<!-- Constants -->
|
151
|
+
<section id="constants-list" class="section">
|
152
|
+
<h3 class="section-header">Constants</h3>
|
153
|
+
<dl>
|
154
|
+
|
155
|
+
<dt id="BAM_CDEL">BAM_CDEL
|
156
|
+
|
157
|
+
<dd class="description">
|
158
|
+
|
159
|
+
|
160
|
+
<dt id="BAM_CHARD_CLIP">BAM_CHARD_CLIP
|
161
|
+
|
162
|
+
<dd class="description">
|
163
|
+
|
164
|
+
|
165
|
+
<dt id="BAM_CIGAR_MASK">BAM_CIGAR_MASK
|
166
|
+
|
167
|
+
<dd class="description">
|
168
|
+
|
169
|
+
|
170
|
+
<dt id="BAM_CIGAR_SHIFT">BAM_CIGAR_SHIFT
|
171
|
+
|
172
|
+
<dd class="description">
|
173
|
+
|
174
|
+
|
175
|
+
<dt id="BAM_CINS">BAM_CINS
|
176
|
+
|
177
|
+
<dd class="description">
|
178
|
+
|
179
|
+
|
180
|
+
<dt id="BAM_CMATCH">BAM_CMATCH
|
181
|
+
|
182
|
+
<dd class="description">
|
183
|
+
|
184
|
+
|
185
|
+
<dt id="BAM_CPAD">BAM_CPAD
|
186
|
+
|
187
|
+
<dd class="description">
|
188
|
+
|
189
|
+
|
190
|
+
<dt id="BAM_CREF_SKIP">BAM_CREF_SKIP
|
191
|
+
|
192
|
+
<dd class="description">
|
193
|
+
|
194
|
+
|
195
|
+
<dt id="BAM_CSOFT_CLIP">BAM_CSOFT_CLIP
|
196
|
+
|
197
|
+
<dd class="description">
|
198
|
+
|
199
|
+
|
200
|
+
<dt id="BAM_DEF_MASK">BAM_DEF_MASK
|
201
|
+
|
202
|
+
<dd class="description">
|
203
|
+
|
204
|
+
|
205
|
+
<dt id="BAM_FDUP">BAM_FDUP
|
206
|
+
|
207
|
+
<dd class="description">
|
208
|
+
|
209
|
+
|
210
|
+
<dt id="BAM_FMREVERSE">BAM_FMREVERSE
|
211
|
+
|
212
|
+
<dd class="description">
|
213
|
+
|
214
|
+
|
215
|
+
<dt id="BAM_FMUNMAP">BAM_FMUNMAP
|
216
|
+
|
217
|
+
<dd class="description">
|
218
|
+
|
219
|
+
|
220
|
+
<dt id="BAM_FPAIRED">BAM_FPAIRED
|
221
|
+
|
222
|
+
<dd class="description">
|
223
|
+
|
224
|
+
|
225
|
+
<dt id="BAM_FPROPER_PAIR">BAM_FPROPER_PAIR
|
226
|
+
|
227
|
+
<dd class="description">
|
228
|
+
|
229
|
+
|
230
|
+
<dt id="BAM_FQCFAIL">BAM_FQCFAIL
|
231
|
+
|
232
|
+
<dd class="description">
|
233
|
+
|
234
|
+
|
235
|
+
<dt id="BAM_FREAD1">BAM_FREAD1
|
236
|
+
|
237
|
+
<dd class="description">
|
238
|
+
|
239
|
+
|
240
|
+
<dt id="BAM_FREAD2">BAM_FREAD2
|
241
|
+
|
242
|
+
<dd class="description">
|
243
|
+
|
244
|
+
|
245
|
+
<dt id="BAM_FREVERSE">BAM_FREVERSE
|
246
|
+
|
247
|
+
<dd class="description">
|
248
|
+
|
249
|
+
|
250
|
+
<dt id="BAM_FSECONDARY">BAM_FSECONDARY
|
251
|
+
|
252
|
+
<dd class="description">
|
253
|
+
|
254
|
+
|
255
|
+
<dt id="BAM_FUNMAP">BAM_FUNMAP
|
256
|
+
|
257
|
+
<dd class="description">
|
258
|
+
|
259
|
+
|
260
|
+
<dt id="BAM_OFDEC">BAM_OFDEC
|
261
|
+
|
262
|
+
<dd class="description">
|
263
|
+
|
264
|
+
|
265
|
+
<dt id="BAM_OFHEX">BAM_OFHEX
|
266
|
+
|
267
|
+
<dd class="description">
|
268
|
+
|
269
|
+
|
270
|
+
<dt id="BAM_OFSTR">BAM_OFSTR
|
271
|
+
|
272
|
+
<dd class="description">
|
273
|
+
|
274
|
+
|
275
|
+
</dl>
|
276
|
+
</section>
|
277
|
+
|
278
|
+
|
279
|
+
|
280
|
+
|
281
|
+
<!-- Methods -->
|
282
|
+
|
283
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section section">
|
284
|
+
<h3 class="section-header">Public Class Methods</h3>
|
285
|
+
|
286
|
+
|
287
|
+
<div id="method-c-bam_sort" class="method-detail ">
|
288
|
+
|
289
|
+
<div class="method-heading">
|
290
|
+
<span class="method-name">bam_sort</span><span
|
291
|
+
class="method-args">(bam_filename, bam_output_prefix)</span>
|
292
|
+
<span class="method-click-advice">click to toggle source</span>
|
293
|
+
</div>
|
294
|
+
|
295
|
+
|
296
|
+
<div class="method-description">
|
297
|
+
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
|
302
|
+
<div class="method-source-code" id="bam_sort-source">
|
303
|
+
<pre><span class="ruby-comment"># File lib/bio/db/sam/bam.rb, line 172</span>
|
304
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">bam_sort</span>(<span class="ruby-identifier">bam_filename</span>, <span class="ruby-identifier">bam_output_prefix</span>)
|
305
|
+
<span class="ruby-identifier">is_by_name</span> = <span class="ruby-value">0</span>
|
306
|
+
<span class="ruby-identifier">max_mem</span> = <span class="ruby-value">500000000</span>
|
307
|
+
<span class="ruby-identifier">bam_sort_core</span>(<span class="ruby-identifier">is_by_name</span>, <span class="ruby-identifier">bam_filename</span>, <span class="ruby-identifier">bam_output_prefix</span>, <span class="ruby-identifier">max_mem</span>)
|
308
|
+
<span class="ruby-keyword">end</span></pre>
|
309
|
+
</div><!-- bam_sort-source -->
|
310
|
+
|
311
|
+
</div>
|
312
|
+
|
313
|
+
|
314
|
+
|
315
|
+
|
316
|
+
</div><!-- bam_sort-method -->
|
317
|
+
|
318
|
+
|
319
|
+
</section><!-- public-class-method-details -->
|
320
|
+
|
321
|
+
</section><!-- 5Buntitled-5D -->
|
322
|
+
|
323
|
+
</div><!-- documentation -->
|
324
|
+
|
325
|
+
|
326
|
+
<footer id="validator-badges">
|
327
|
+
<p><a href="http://validator.w3.org/check/referer">[Validate]</a>
|
328
|
+
<p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.11.
|
329
|
+
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
330
|
+
</footer>
|
331
|
+
|