Skip to content

Commit

Permalink
update output docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fraser-combe committed Nov 15, 2024
1 parent 1bc7bb0 commit eedfd54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
9 changes: 6 additions & 3 deletions docs/workflows/standalone/dorado_basecalling.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,13 @@ This workflow is composed of several tasks to process, basecall, and analyze rab

| **Variable** | **Type** | **Description** |
|---|---|---|
| **basecalled_fastqs** | Array[File] | Array of FASTQ files generated from basecalling |
| **demuxed_fastqs** | Array[File] | FASTQ files produced from BAM demultiplexing |
| **logs** | Array[File] | Log files from the demultiplexing process |
| **fastq_files** | Array[File] | FASTQ files produced from basecalling and demultiplexing |
| **terra_table_tsv** | File | TSV file for Terra table upload |
| **dorado_version** | String | Version of Dorado used in the workflow |
| **dorado_model** | String | Model used for basecalling |
| **samtools_version** | String | Version of Samtools used in the workflow |
| **dorado_analysis_date** | String | Date of Dorado analysis |
| **dorado_phb_version** | String | Version of Dorado PHB workflow |

## References
<!-- -->
Expand Down
3 changes: 1 addition & 2 deletions tasks/basecalling/task_dorado_demux.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ task dorado_demux {
set -euo pipefail

# Capture Dorado version
dorado --version 2>&1 | tee DORADO_VERSION
echo "Dorado version:" $(cat DORADO_VERSION)
dorado --version 2>&1 | head -n1 | tee DORADO_VERSION

# Output the Dorado model used
echo "~{dorado_model_used}" > DORADO_MODEL_USED
Expand Down
2 changes: 1 addition & 1 deletion tasks/basecalling/task_samtools_convert.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ task samtools_convert {
set -euo pipefail

# samtools version
samtools --version | head -n1 | tee VERSION
samtools --version | head -n1 | tee SAMTOOLS_VERSION

bam_output="output/bam/"
mkdir -p "$bam_output"
Expand Down

0 comments on commit eedfd54

Please sign in to comment.