@@ -2779,7 +2779,6 @@ Placeholders are evaluated in multi-line strings exactly the same as in regular
2779
2779
String company = "Acme"
2780
2780
2781
2781
output {
2782
-
2783
2782
# This string evaluates to: " Hello Henry,\n Welcome to Acme!"
2784
2783
# The string still has spaces because the placeholders are evaluated after removing the
2785
2784
# common leading whitespace.
@@ -4346,7 +4345,7 @@ Example input:
4346
4345
4347
4346
``` json
4348
4347
{
4349
- "str" : " hello"
4348
+ "bash_variables. str" : " hello"
4350
4349
}
4351
4350
```
4352
4351
@@ -5842,7 +5841,7 @@ task test_runtime_info {
5842
5841
5843
5842
output {
5844
5843
Boolean at_least_two_gb = task.memory >= (2 * 1024 * 1024 * 1024)
5845
- Int return_code = select_first([ task.return_code, 0])
5844
+ Int? return_code = task.return_code
5846
5845
}
5847
5846
5848
5847
requirements {
@@ -5934,8 +5933,8 @@ task hisat2 {
5934
5933
5935
5934
parameter_meta {
5936
5935
index_tar_gz: "Gzipped tar file with HISAT2 index files"
5937
- fastq1: "The first-end FastQ file."
5938
- fastq2: "The second-end FastQ file."
5936
+ fastq1: "The FASTQ file containing all read ones ."
5937
+ fastq2: "The FASTQ file containing all read twos ."
5939
5938
sample_name: "Name of the sample"
5940
5939
}
5941
5940
}
@@ -8241,9 +8240,9 @@ task file_sizes {
8241
8240
8242
8241
output {
8243
8242
File created_file = "out.txt"
8244
- Float missing_file_bytes = if defined(missing_file) then size(missing_file, "B") else 0.0
8243
+ Float missing_file_bytes = size(missing_file, "B")
8245
8244
Float created_file_bytes = size(created_file, "B")
8246
- Float multi_file_kb = size(select_all( [created_file, missing_file]) , "K") # 0.022
8245
+ Float multi_file_kb = size([created_file, missing_file], "K") # 0.022
8247
8246
8248
8247
Map[String, Pair[Int, File]] nested = {
8249
8248
"a": (10, created_file),
0 commit comments