Skip to content

Commit

Permalink
Merge pull request #3 from Kincekara/dev
Browse files Browse the repository at this point in the history
version 1.2.1
  • Loading branch information
Kincekara authored Oct 3, 2023
2 parents ff4155d + 3e08969 commit b7966f3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tasks/task_mlst.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ task ts_mlst {
input {
File assembly
String samplename
String docker = "staphb/mlst:2.23.0"
String docker = "staphb/mlst:2.23.0-2023-08"
Int? cpu = 4
# Parameters
# --nopath Strip filename paths from FILE column (default OFF)
Expand Down
4 changes: 2 additions & 2 deletions tasks/task_plasmidfinder.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ task plasmidfinder {
if [ ! -f results_tab.tsv ]; then
PF="No plasmids detected in database"
else
PF="$(tail -n +2 results_tab.tsv | cut -f 2 | sort | uniq -u | paste -s -d, - )"
PF="$(tail -n +2 results_tab.tsv | uniq | cut -f 2 | sort | paste -s -d, - )"
if [ "$PF" == "" ]; then
PF="No plasmids detected in database"
fi
fi
echo $PF | tee PLASMIDS
echo "$PF" | tee PLASMIDS

# rename results
mv results_tab.tsv ~{samplename}.plasmid.tsv
Expand Down
2 changes: 1 addition & 1 deletion tasks/task_spades.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ task spades_pe {
input {
File read1
File read2
Int? contig_threshold = 500
Int? contig_threshold = 300
String samplename
String docker = "kincekara/spades:3.15.5"

Expand Down
2 changes: 1 addition & 1 deletion tasks/task_version.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ task version_capture {
volatile: true
}
command {
cbird_version="C-BIRD v1.1.0"
cbird_version="C-BIRD v1.2.1"
~{default='' 'export TZ=' + timezone}
date +"%Y-%m-%d" > TODAY
echo "$cbird_version" > CBIRD_VERSION
Expand Down

0 comments on commit b7966f3

Please sign in to comment.