Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
version 1.10.1
------------------
+ Fix a bug that is caused by a wrong bash variable.

version 1.10.0
------------------
+ Fix crashing baseline when only unproductive sequences are present.
Expand Down
2 changes: 1 addition & 1 deletion shm_csr.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<tool id="shm_csr" name="SHM &amp; CSR pipeline" version="1.10.0" profile="16.04">
<tool id="shm_csr" name="SHM &amp; CSR pipeline" version="1.10.1" profile="16.04">
<description></description>
<requirements>
<requirement type="package" version="3.7.1">python</requirement>
Expand Down
2 changes: 1 addition & 1 deletion wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ mv $log $outdir/log.html
echo "<html><center><h1><a href='index.html'>Click here for the results</a></h1>Tip: Open it in a new tab (middle mouse button or right mouse button -> 'open in new tab' on the link above)<br />" > $log
echo "<table border = 1>" >> $log
echo "<thead><tr><th>Info</th><th>Sequences</th><th>Percentage</th></tr></thead>" >> $log
tIFS="$TMP"
tIFS="$IFS"
IFS=$'\t'
while read step seq perc
do
Expand Down
Loading