Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
W
webin-cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
enasequence
webin-cli
Commits
454f1bc8
Commit
454f1bc8
authored
Mar 01, 2019
by
Rasko Leinonen
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
571a8d66
abfe202c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
src/main/java/uk/ac/ebi/ena/webin/cli/rawreads/refs/CramReferenceInfo.java
...ac/ebi/ena/webin/cli/rawreads/refs/CramReferenceInfo.java
+8
-1
No files found.
src/main/java/uk/ac/ebi/ena/webin/cli/rawreads/refs/CramReferenceInfo.java
View file @
454f1bc8
...
...
@@ -249,7 +249,7 @@ CramReferenceInfo
es
.
awaitTermination
(
1
,
TimeUnit
.
HOURS
);
printProcessedReferenceNumber
(
count
);
log
.
info
(
""
);
printFlush
(
"\n"
);
}
catch
(
InterruptedException
e
)
{
...
...
@@ -263,6 +263,13 @@ CramReferenceInfo
printProcessedReferenceNumber
(
AtomicLong
count
)
{
String
msg
=
String
.
format
(
"\rChecked %16d references(s)"
,
count
.
get
()
);
printFlush
(
msg
);
}
public
void
printFlush
(
String
msg
)
{
System
.
out
.
print
(
msg
);
System
.
out
.
flush
();
}
...
...
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