Skip to content

Commit

Permalink
missing variables
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijli committed Aug 20, 2024
1 parent 55b1286 commit 21f79e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions readcount.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,15 @@ workflow readcount {

call finish_count {
input:
container = container,
proj_id = proj_id,
count_table = count.tab,
count_ig = count.ig,
count_log = count.log,
readcount_info = make_info_file.readcount_info
readcount_info = make_info_file.readcount_info,
container = container,
cpu = cpu,
memory = memory,
time = time
}

output{
Expand Down Expand Up @@ -203,9 +206,12 @@ task finish_count {
File? count_log
File? count_ig
File readcount_info
String container
String proj_id
String prefix=sub(proj_id, ":", "_")
String container
Int cpu
String memory
String time
}

command<<<
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.4
v0.0.5

0 comments on commit 21f79e5

Please sign in to comment.