Skip to content

Commit

Permalink
chore: apply PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
adthrasher committed Oct 28, 2024
1 parent ce77e28 commit 275c5d8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tools/samtools.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -1343,7 +1343,7 @@ task sort {
bam: "Input BAM format file to sort"
tag_sort: {
description: "Sort by the value of the alignment tag specified in `tag_sort`. When specified, samtools sorts by the value of the alignment tag and then by either position or read name.",
external_help: "https://www.htslib.org/doc/samtools-sort.html"
external_help: "https://www.htslib.org/doc/samtools-sort.html",
}
prefix: "Prefix for the output file. The extension `.bam` will be added."
uncompressed: "Output uncompressed BAM?"
Expand Down
2 changes: 1 addition & 1 deletion workflows/hic/hicpro-core.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ workflow hicpro_core {
hicpro_field: "MAX_ITER",
}
bin_sizes: {
description: "Resolution of contact maps to generate ",
description: "Resolution of contact maps to generate",
hicpro_field: "BIN_SIZE",
}
matrix_format: {
Expand Down
18 changes: 9 additions & 9 deletions workflows/reference/make-hic-reference.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ workflow make_hic_reference {
meta {
description: "Downloads and creates all reference files needed to run the `hic` workflow"
outputs: {
reference_fasta: "FASTA format reference file used to generate `bowtie2_db_tar_gz`"
reference_fasta_index: "FASTA index file for `reference_fasta`"
reference_chromsizes: "Chromosome sizes file for `reference_fasta`"
genome_fragment: "BED file(s) with restriction fragments"
exclude_list: "BED file with regions to exclude from analysis"
bowtie2_db_tar_gz: "Gzipped tar archive of the Bowtie2 reference files. Files are at the root of the archive."
bowtie2_index_files: "Bowtie2 index files"
reference_fasta: "FASTA format reference file used to generate `bowtie2_db_tar_gz`",
reference_fasta_index: "FASTA index file for `reference_fasta`",
reference_chromsizes: "Chromosome sizes file for `reference_fasta`",
genome_fragment: "BED file(s) with restriction fragments",
exclude_list: "BED file with regions to exclude from analysis",
bowtie2_db_tar_gz: "Gzipped tar archive of the Bowtie2 reference files. Files are at the root of the archive.",
bowtie2_index_files: "Bowtie2 index files",
}
allowNestedInputs: true
}
Expand All @@ -26,8 +26,8 @@ workflow make_hic_reference {
exclude_list_name: "Name of output exclude list file"
restriction_sites: {
description: "List of restriction sites for which to extract restriction fragments"
help: "This uses HiC-Pro's `digest_genome.py` script to generate restriction fragments. Each site should be specified as a string of nucleotides. A carat (`^`) marks the cut site."
external_help: "https://github.com/nservant/HiC-Pro/blob/master/doc/UTILS.md#digest_genomepy-or-how-can-i-generate-the-list-of-restriction-fragments-after-genome-digestion-"
help: "This uses HiC-Pro's `digest_genome.py` script to generate restriction fragments. Each site should be specified as a string of nucleotides. A carat (`^`) marks the cut site.",
external_help: "https://github.com/nservant/HiC-Pro/blob/master/doc/UTILS.md#digest_genomepy-or-how-can-i-generate-the-list-of-restriction-fragments-after-genome-digestion-",
}
restriction_sites_names: "Names for the restriction sites to use in output files"
}
Expand Down

0 comments on commit 275c5d8

Please sign in to comment.