Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
4b26eede
Commit
4b26eede
authored
Feb 27, 2016
by
Mathieu Giraud
Browse files
core/fasta.cpp: output marked_pos
parent
a41c7ffe
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/core/fasta.cpp
View file @
4b26eede
...
...
@@ -367,7 +367,14 @@ ostream &operator<<(ostream &out, const Sequence &seq) {
out
<<
"@"
;
}
else
out
<<
">"
;
out
<<
seq
.
label
<<
endl
;
out
<<
seq
.
label
;
if
(
seq
.
marked_pos
)
{
out
<<
" !@"
<<
seq
.
marked_pos
;
}
out
<<
endl
;
out
<<
seq
.
sequence
<<
endl
;
if
(
is_fastq
)
{
out
<<
"+"
<<
endl
<<
seq
.
quality
<<
endl
;
...
...
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