Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OBITools3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OBITools
OBITools3
Commits
730ea99f
Commit
730ea99f
authored
Nov 19, 2018
by
Celine Mercier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixes and comments
parent
4d51f4f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/dna_seq_indexer.c
src/dna_seq_indexer.c
+6
-1
src/obi_clean.c
src/obi_clean.c
+0
-1
No files found.
src/dna_seq_indexer.c
View file @
730ea99f
...
...
@@ -66,8 +66,13 @@ char* obi_blob_to_seq(Obi_blob_p value_b)
// Decode
if
(
value_b
->
element_size
==
2
)
return
decode_seq_on_2_bits
(
value_b
->
value
,
value_b
->
length_decoded_value
);
else
else
//if (value_b->element_size == 4) commented for efficiency reasons
return
decode_seq_on_4_bits
(
value_b
->
value
,
value_b
->
length_decoded_value
);
// else
// {
// fprintf(stderr, "\n BUG \n");
// return NULL;
// }
}
...
...
src/obi_clean.c
View file @
730ea99f
...
...
@@ -46,7 +46,6 @@
* Internal function creating the output columns for the obiclean algorithm.
*
* @param o_view A pointer on the output view.
* @param i_view A pointer on the input view.
* @param sample_column A pointer on the column where sample counts are kept.
* @param sample_count The number of different samples.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment