Build branch add-labels with version add-labels (0b5aea9)
Build pipeline: viash-hub.rnaseq.add-labels-v42km
Source commit: 0b5aea9962
Source message: Add test workflow and fix some issues
This commit is contained in:
@@ -1,27 +1,6 @@
|
||||
// template nextflow.config for nested workflows
|
||||
|
||||
manifest {
|
||||
nextflowVersion = '!>=20.12.1-edge'
|
||||
homePage = 'https://github.com/viash-hub/rnaseq'
|
||||
description = 'Bulk RNAseq pipeline'
|
||||
mainScript = 'target/nextflow/workflows/rnaseq/main.nf'
|
||||
}
|
||||
|
||||
docker {
|
||||
fixOwnership = true
|
||||
}
|
||||
|
||||
|
||||
// TODO 1: unquote and adapt `rootDir` according to relative path within project
|
||||
// params {
|
||||
// rootDir = "$projectDir/../.."
|
||||
// }
|
||||
//
|
||||
// workflowDir = "${params.rootDir}/workflows"
|
||||
// targetDir = "${params.rootDir}/target/nextflow"
|
||||
|
||||
// TODO 2: insert custom imports here
|
||||
|
||||
// TODO 3: unquote
|
||||
// docker {
|
||||
// runOptions = "-v \$(realpath ${params.rootDir}):\$(realpath ${params.rootDir})"
|
||||
// }
|
||||
|
||||
|
||||
|
||||
@@ -164,7 +164,7 @@ workflow run_wf {
|
||||
],
|
||||
directives: [ label: [ "lowmem", "midcpu" ] ]
|
||||
)
|
||||
|
||||
|
||||
// untar bbsplit index, if available
|
||||
| untar.run (
|
||||
runIf: {id, state -> state.bbsplit_index},
|
||||
@@ -176,16 +176,12 @@ workflow run_wf {
|
||||
|
||||
| map { id, state ->
|
||||
// Check if bbsplit_fasta_list is defined
|
||||
if (state.bbsplit_fasta_list) {
|
||||
def ref = [state.fasta] + state.bbsplit_fasta_list
|
||||
} else {
|
||||
def ref = [state.fasta]
|
||||
}
|
||||
def ref = (state.bbsplit_fasta_list) ?
|
||||
[state.fasta] + state.bbsplit_fasta_list :
|
||||
[state.fasta]
|
||||
[id, state + [bbsplit_ref: ref] ]
|
||||
}
|
||||
|
||||
| niceView()
|
||||
|
||||
// create bbsplit index, if not already available
|
||||
| bbmap_bbsplit.run (
|
||||
runIf: {id, state -> !state.skip_bbsplit && !state.bbsplit_index},
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
// TODO: Split in /sample and integrated QC
|
||||
workflow run_wf {
|
||||
|
||||
take:
|
||||
@@ -7,7 +8,7 @@ workflow run_wf {
|
||||
|
||||
qc_ch = input_ch
|
||||
|
||||
// temporary fix to force assignment when alignment in skipped
|
||||
// temporary fix to force assignment when alignment is skipped
|
||||
// TODO: Check this
|
||||
| map {it}
|
||||
|
||||
@@ -825,5 +826,3 @@ def getInferexperimentStrandedness(inferexperiment_file, cutoff=30) {
|
||||
return [ strandedness, sense, antisense, undetermined ]
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -244,9 +244,9 @@ argument_groups:
|
||||
- name: "--skip_preseq"
|
||||
type: boolean_true
|
||||
description: Skip Preseq.
|
||||
- name: "--skip_deseq2_qc"
|
||||
type: boolean_true
|
||||
description: Skip DESeq2 PCA and heatmap plotting.
|
||||
# - name: "--skip_deseq2_qc"
|
||||
# type: boolean_true
|
||||
# description: Skip DESeq2 PCA and heatmap plotting.
|
||||
- name: --skip_dupradar
|
||||
type: boolean_true
|
||||
description: Skip dupRadar.
|
||||
|
||||
@@ -339,11 +339,16 @@ workflow run_wf {
|
||||
)
|
||||
|
||||
// Final QC
|
||||
|
||||
// Temporarily skip DESeq2 QC for now
|
||||
// https://github.com/viash-hub/rnaseq/issues/31
|
||||
| map{ id, state -> [ id, state + [ skip_deseq2_qc: true ] ] }
|
||||
|
||||
| quality_control.run (
|
||||
fromState: [
|
||||
"id": "id",
|
||||
"paired": "paired",
|
||||
"strandedness": "strandedness",
|
||||
"strandedness": "strandedness",
|
||||
"skip_align": "skip_alignment",
|
||||
"skip_pseudo_align": "skip_pseudo_alignment",
|
||||
"skip_dupradar": "skip_dupradar",
|
||||
@@ -351,12 +356,12 @@ workflow run_wf {
|
||||
"skip_rseqc": "skip_rseqc",
|
||||
"skip_multiqc": "skip_multiqc",
|
||||
"skip_preseq": "skip_preseq",
|
||||
"gtf": "gtf",
|
||||
"gtf": "gtf",
|
||||
"num_trimmed_reads": "num_trimmed_reads",
|
||||
"passed_trimmed_reads": "passed_trimmed_reads",
|
||||
"passed_mapping": "passed_mapping",
|
||||
"percent_mapped": "percent_mapped",
|
||||
"genome_bam": "genome_bam_sorted",
|
||||
"genome_bam": "genome_bam_sorted",
|
||||
"genome_bam_index": "genome_bam_index",
|
||||
"salmon_multiqc": "salmon_multiqc",
|
||||
"quant_results_file": "quant_results_file",
|
||||
@@ -365,34 +370,34 @@ workflow run_wf {
|
||||
"rsem_counts_transcripts": "rsem_counts_transcripts",
|
||||
"pseudo_multiqc": "pseudo_multiqc",
|
||||
"pseudo_quant_out_dir": "pseudo_quant_out_dir",
|
||||
"pseudo_salmon_quant_results_file": "pseudo_salmon_quant_results_file",
|
||||
"pseudo_salmon_quant_results_file": "pseudo_salmon_quant_results_file",
|
||||
"pseudo_kallisto_quant_results_file": "pseudo_kallisto_quant_results_file",
|
||||
"aligner": "aligner",
|
||||
"pseudo_aligner": "pseudo_aligner",
|
||||
"gene_bed": "gene_bed",
|
||||
"extra_preseq_args": "extra_preseq_args",
|
||||
"biotype": "biotype",
|
||||
"skip_biotype_qc": "skip_biotype_qc",
|
||||
"featurecounts_group_type": "featurecounts_group_type",
|
||||
"featurecounts_feature_type": "featurecounts_feature_type",
|
||||
"biotype": "biotype",
|
||||
"skip_biotype_qc": "skip_biotype_qc",
|
||||
"featurecounts_group_type": "featurecounts_group_type",
|
||||
"featurecounts_feature_type": "featurecounts_feature_type",
|
||||
"gencode": "gencode",
|
||||
"skip_deseq2_qc": "skip_deseq2_qc",
|
||||
"skip_deseq2_qc": "skip_deseq2_qc",
|
||||
"deseq2_vst": "deseq2_vst",
|
||||
"multiqc_custom_config": "multiqc_custom_config",
|
||||
"multiqc_custom_config": "multiqc_custom_config",
|
||||
"multiqc_title": "multiqc_title",
|
||||
"multiqc_methods_description": "multiqc_methods_description",
|
||||
"fastqc_zip_1": "fastqc_zip_1",
|
||||
"fastqc_zip_2": "fastqc_zip_2",
|
||||
"trim_log_1": "trim_log_1",
|
||||
"trim_log_2": "trim_log_2",
|
||||
"fastqc_zip_2": "fastqc_zip_2",
|
||||
"trim_log_1": "trim_log_1",
|
||||
"trim_log_2": "trim_log_2",
|
||||
"trim_zip_1": "trim_zip_1",
|
||||
"trim_zip_2": "trim_zip_2",
|
||||
"sortmerna_multiqc": "sortmerna_log",
|
||||
"star_multiqc": "star_multiqc",
|
||||
"genome_bam_stats": "genome_bam_stats",
|
||||
"genome_bam_flagstat": "genome_bam_flagstat",
|
||||
"genome_bam_idxstats": "genome_bam_idxstats",
|
||||
"markduplicates_multiqc": "markduplicates_metrics",
|
||||
"sortmerna_multiqc": "sortmerna_log",
|
||||
"star_multiqc": "star_multiqc",
|
||||
"genome_bam_stats": "genome_bam_stats",
|
||||
"genome_bam_flagstat": "genome_bam_flagstat",
|
||||
"genome_bam_idxstats": "genome_bam_idxstats",
|
||||
"markduplicates_multiqc": "markduplicates_metrics",
|
||||
"rseqc_modules": "rseqc_modules"
|
||||
],
|
||||
toState: [
|
||||
@@ -440,7 +445,7 @@ workflow run_wf {
|
||||
"counts_gene_scaled": "counts_gene_scaled",
|
||||
"tpm_transcript": "tpm_transcript",
|
||||
"counts_transcript": "counts_transcript",
|
||||
"qunat_merged_summarizedexperiment": "quant_merged_summarizedexperiment",
|
||||
"quant_merged_summarizedexperiment": "quant_merged_summarizedexperiment",
|
||||
"deseq2_output": "deseq2_output",
|
||||
"pseudo_tpm_gene": "pseudo_tpm_gene",
|
||||
"pseudo_counts_gene": "pseudo_counts_gene",
|
||||
|
||||
14
src/workflows/rnaseq/nextflow.config
Normal file
14
src/workflows/rnaseq/nextflow.config
Normal file
@@ -0,0 +1,14 @@
|
||||
manifest {
|
||||
nextflowVersion = '!>=20.12.1-edge'
|
||||
}
|
||||
|
||||
params {
|
||||
rootDir = java.nio.file.Paths.get("$projectDir/../../../").toAbsolutePath().normalize().toString()
|
||||
}
|
||||
|
||||
// Some important settings
|
||||
docker.fixOwnership = true
|
||||
process.container = "nextflow/nextflow:24.04.2"
|
||||
|
||||
// include common settings
|
||||
includeConfig("${params.rootDir}/src/workflows/utils/labels.config")
|
||||
53
src/workflows/rnaseq/test.nf
Normal file
53
src/workflows/rnaseq/test.nf
Normal file
@@ -0,0 +1,53 @@
|
||||
include { rnaseq } from params.rootDir + "/target/nextflow/workflows/rnaseq/main.nf"
|
||||
|
||||
params.resources_test = params.rootDir + "/resources_test"
|
||||
|
||||
workflow test_wf {
|
||||
|
||||
resources_test = file(params.resources_test)
|
||||
|
||||
output_ch =
|
||||
|
||||
Channel.fromList([
|
||||
[
|
||||
id: "_test",
|
||||
fastq_1: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/testdata/GSE110004/SRR6357070_1.fastq.gz;" +
|
||||
"https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/testdata/GSE110004/SRR6357071_1.fastq.gz" ,
|
||||
fastq_2: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/testdata/GSE110004/SRR6357070_2.fastq.gz;" +
|
||||
"https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/testdata/GSE110004/SRR6357071_2.fastq.gz",
|
||||
strandedness: "reverse",
|
||||
fasta: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/reference/genome.fasta",
|
||||
gtf: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/reference/genes.gtf.gz",
|
||||
additional_fasta: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/reference/gfp.fa.gz",
|
||||
transcript_fasta: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/reference/transcriptome.fasta",
|
||||
salmon_index: "https://github.com/nf-core/test-datasets/raw/refs/heads/rnaseq/reference/salmon.tar.gz",
|
||||
publish_dir: "output/",
|
||||
skip_deseq2_qc: true
|
||||
]
|
||||
])
|
||||
|
||||
| map { state -> [state.id, state] }
|
||||
|
||||
| rnaseq.run(
|
||||
fromState: { id, state -> state },
|
||||
toState: { id, output, state -> output }
|
||||
)
|
||||
|
||||
| view { output ->
|
||||
assert output.size() == 2 : "Outputs should contain two elements; [id, state]"
|
||||
|
||||
// check id
|
||||
def id = output[0]
|
||||
assert id.endsWith("_test")
|
||||
|
||||
// check output
|
||||
def state = output[1]
|
||||
assert state instanceof Map : "State should be a map. Found: ${state}"
|
||||
assert state.containsKey("output_fasta") : "Output should contain key 'output_fasta'."
|
||||
assert state.output_fasta.isFile() : "'output_fasta' should be a file."
|
||||
assert state.containsKey("output_gtf") : "Output should contain key 'output_gtf'."
|
||||
assert state.output_gtf.isFile() : "'output_gtf' should be a file."
|
||||
|
||||
"Output: $output"
|
||||
}
|
||||
}
|
||||
@@ -368,9 +368,9 @@ build_info:
|
||||
output: "target/nextflow/bbmap/bbmap_bbsplit"
|
||||
executable: "target/nextflow/bbmap/bbmap_bbsplit/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3220,9 +3220,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/bbmap/bbmap_bbsplit",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Paired fastq files or not?",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Paired fastq files or not?"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If set, only builds the index",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If set, only builds the index. Otherwise, mapping is performed."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. True forces paired/interleaved input; false forces single-ended mapping",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. True forces paired/interleaved input; false forces single-ended mapping.\nIf not specified, interleaved status will be autodetected from read names.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -169,7 +169,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Undo trimming after mapping",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Undo trimming after mapping. Untrimmed bases will be soft-clipped in cigar strings."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.index.index`, example: `BBSplit_index`. Location to write the index",
|
||||
"help_text": "Type: `file`, default: `$id.$key.index.index`, example: `BBSplit_index`. Location to write the index.\n"
|
||||
,
|
||||
"default": "$id.$key.index.index"
|
||||
"default":"$id.$key.index.index"
|
||||
}
|
||||
|
||||
|
||||
@@ -201,7 +201,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.fastq_1.fastq`, example: `read_out1.fastq`. Output file for read 1",
|
||||
"help_text": "Type: `file`, default: `$id.$key.fastq_1.fastq`, example: `read_out1.fastq`. Output file for read 1.\n"
|
||||
,
|
||||
"default": "$id.$key.fastq_1.fastq"
|
||||
"default":"$id.$key.fastq_1.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -212,7 +212,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.fastq_2.fastq`, example: `read_out2.fastq`. Output file for read 2",
|
||||
"help_text": "Type: `file`, default: `$id.$key.fastq_2.fastq`, example: `read_out2.fastq`. Output file for read 2.\n"
|
||||
,
|
||||
"default": "$id.$key.fastq_2.fastq"
|
||||
"default":"$id.$key.fastq_2.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -223,7 +223,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.sam2bam.sh`, example: `script.sh`. Write a shell script to \u0027file\u0027 that will turn the sam output into a sorted, indexed bam file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.sam2bam.sh`, example: `script.sh`. Write a shell script to \u0027file\u0027 that will turn the sam output into a sorted, indexed bam file.\n"
|
||||
,
|
||||
"default": "$id.$key.sam2bam.sh"
|
||||
"default":"$id.$key.sam2bam.sh"
|
||||
}
|
||||
|
||||
|
||||
@@ -234,7 +234,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.scafstats.txt`, example: `scaffold_stats.txt`. Write statistics on how many reads mapped to which scaffold to this file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.scafstats.txt`, example: `scaffold_stats.txt`. Write statistics on how many reads mapped to which scaffold to this file.\n"
|
||||
,
|
||||
"default": "$id.$key.scafstats.txt"
|
||||
"default":"$id.$key.scafstats.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -245,7 +245,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.refstats.txt`, example: `reference_stats.txt`. Write statistics on how many reads were assigned to which reference to this file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.refstats.txt`, example: `reference_stats.txt`. Write statistics on how many reads were assigned to which reference to this file.\nUnmapped reads whose mate mapped to a reference are considered assigned and will be counted.\n"
|
||||
,
|
||||
"default": "$id.$key.refstats.txt"
|
||||
"default":"$id.$key.refstats.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -256,7 +256,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Only print lines with nonzero coverage",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Only print lines with nonzero coverage."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -337,9 +337,9 @@ build_info:
|
||||
output: "target/nextflow/bedtools/bedtools_genomecov"
|
||||
executable: "target/nextflow/bedtools/bedtools_genomecov/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3207,9 +3207,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/bedtools/bedtools_genomecov",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.bed`, example: `output.bed`. The output BED file",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.bed`, example: `output.bed`. The output BED file. \n"
|
||||
,
|
||||
"default": "$id.$key.output.bed"
|
||||
"default":"$id.$key.output.bed"
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Report the depth at each genome position (with one-based coordinates)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Report the depth at each genome position (with one-based coordinates).\nDefault behavior is to report a histogram.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Report the depth at each genome position (with zero-based coordinates)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Report the depth at each genome position (with zero-based coordinates).\nReports only non-zero positions.\nDefault behavior is to report a histogram.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Report depth in BedGraph format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Report depth in BedGraph format. For details, see:\ngenome.ucsc.edu/goldenPath/help/bedgraph.html\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Report depth in BedGraph format, as above (-bg)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Report depth in BedGraph format, as above (-bg).\nHowever with this option, regions with zero \ncoverage are also reported. This allows one to\nquickly extract all regions of a genome with 0 \ncoverage by applying: \"grep -w 0$\" to the output.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -125,7 +125,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Treat \"split\" BAM or BED12 entries as distinct BED intervals",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Treat \"split\" BAM or BED12 entries as distinct BED intervals.\nwhen computing coverage.\nFor BAM files, this uses the CIGAR \"N\" and \"D\" operations \nto infer the blocks for computing coverage.\nFor BED12 files, this uses the BlockCount, BlockStarts, and BlockEnds\nfields (i.e., columns 10,11,12).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ignore local deletions (CIGAR \"D\" operations) in BAM entries\nwhen computing coverage",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ignore local deletions (CIGAR \"D\" operations) in BAM entries\nwhen computing coverage.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -159,7 +159,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Calculate coverage of pair-end fragments",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Calculate coverage of pair-end fragments.\nWorks for BAM files only\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -170,7 +170,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Force to use provided fragment size instead of read length\nWorks for BAM files only\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Force to use provided fragment size instead of read length\nWorks for BAM files only\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -181,7 +181,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Change strand af the mate read (so both reads from the same strand) useful for strand specific\nWorks for BAM files only\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Change strand af the mate read (so both reads from the same strand) useful for strand specific\nWorks for BAM files only\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Calculate coverage of 5\" positions (instead of entire interval)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Calculate coverage of 5\" positions (instead of entire interval).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Calculate coverage of 3\" positions (instead of entire interval)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Calculate coverage of 3\" positions (instead of entire interval).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -234,7 +234,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Adds a UCSC/Genome-Browser track line definition in the first line of the output",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Adds a UCSC/Genome-Browser track line definition in the first line of the output.\n- See here for more details about track line definition:\n http://genome.ucsc.edu/goldenPath/help/bedgraph.html\n- NOTE: When adding a trackline definition, the output BedGraph can be easily\n uploaded to the Genome Browser as a custom track,\n BUT CAN NOT be converted into a BigWig file (w/o removing the first line).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1083,9 +1083,9 @@ build_info:
|
||||
output: "target/nextflow/fastp"
|
||||
executable: "target/nextflow/fastp/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -4023,9 +4023,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/fastp",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.out1.gz`, example: `out.R1.fq.gz`. The single-end or paired-end R1 reads that pass QC",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.out1.gz`, example: `out.R1.fq.gz`. The single-end or paired-end R1 reads that pass QC. Will be gzipped if its file name ends with `.gz`."
|
||||
,
|
||||
"default": "$id.$key.out1.gz"
|
||||
"default":"$id.$key.out1.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.out2.gz`, example: `out.R2.fq.gz`. The paired-end R2 reads that pass QC",
|
||||
"help_text": "Type: `file`, default: `$id.$key.out2.gz`, example: `out.R2.fq.gz`. The paired-end R2 reads that pass QC. Will be gzipped if its file name ends with `.gz`."
|
||||
,
|
||||
"default": "$id.$key.out2.gz"
|
||||
"default":"$id.$key.out2.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unpaired1.gz`, example: `unpaired.R1.fq.gz`. Store the reads that `read1` passes filters but its paired `read2` doesn\u0027t",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unpaired1.gz`, example: `unpaired.R1.fq.gz`. Store the reads that `read1` passes filters but its paired `read2` doesn\u0027t."
|
||||
,
|
||||
"default": "$id.$key.unpaired1.gz"
|
||||
"default":"$id.$key.unpaired1.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unpaired2.gz`, example: `unpaired.R2.fq.gz`. Store the reads that `read2` passes filters but its paired `read1` doesn\u0027t",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unpaired2.gz`, example: `unpaired.R2.fq.gz`. Store the reads that `read2` passes filters but its paired `read1` doesn\u0027t."
|
||||
,
|
||||
"default": "$id.$key.unpaired2.gz"
|
||||
"default":"$id.$key.unpaired2.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.failed_out.gz`, example: `failed.fq.gz`. Store the reads that fail filters",
|
||||
"help_text": "Type: `file`, default: `$id.$key.failed_out.gz`, example: `failed.fq.gz`. Store the reads that fail filters.\n\nIf one read failed and is written to --failed_out, its failure reason will be appended to its read name. For example, failed_quality_filter, failed_too_short etc.\nFor PE data, if unpaired reads are not stored (by giving --unpaired1 or --unpaired2), the failed pair of reads will be put together. If one read passes the filters but its pair doesn\u0027t, the failure reason will be paired_read_is_failing.\n"
|
||||
,
|
||||
"default": "$id.$key.failed_out.gz"
|
||||
"default":"$id.$key.failed_out.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.overlapped_out.overlapped_out`. For each read pair, output the overlapped region if it has no any mismatched base",
|
||||
"help_text": "Type: `file`, default: `$id.$key.overlapped_out.overlapped_out`. For each read pair, output the overlapped region if it has no any mismatched base.\n"
|
||||
,
|
||||
"default": "$id.$key.overlapped_out.overlapped_out"
|
||||
"default":"$id.$key.overlapped_out.overlapped_out"
|
||||
}
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.json.json`, example: `out.json`. The json format report file name\n",
|
||||
"help_text": "Type: `file`, default: `$id.$key.json.json`, example: `out.json`. The json format report file name\n"
|
||||
,
|
||||
"default": "$id.$key.json.json"
|
||||
"default":"$id.$key.json.json"
|
||||
}
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.html.html`, example: `out.html`. The html format report file name\n",
|
||||
"help_text": "Type: `file`, default: `$id.$key.html.html`, example: `out.html`. The html format report file name\n"
|
||||
,
|
||||
"default": "$id.$key.html.html"
|
||||
"default":"$id.$key.html.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disable adapter trimming",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disable adapter trimming.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -179,7 +179,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default, the auto-detection for adapter is for SE data input only, turn on this option to enable it for PE data",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default, the auto-detection for adapter is for SE data input only, turn on this option to enable it for PE data.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -300,7 +300,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For paired-end input, merge each pair of reads into a single read if they are overlapped",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For paired-end input, merge each pair of reads into a single read if they are overlapped. The merged reads will be written to the file given by --merged_out, the unmerged reads will be written to the files specified by --out1 and --out2. The merging mode is disabled by default.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -311,7 +311,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.merged_out.gz`, example: `merged.fq.gz`. In the merging mode, specify the file name to store merged output, or specify --stdout to stream the merged output",
|
||||
"help_text": "Type: `file`, default: `$id.$key.merged_out.gz`, example: `merged.fq.gz`. In the merging mode, specify the file name to store merged output, or specify --stdout to stream the merged output.\n"
|
||||
,
|
||||
"default": "$id.$key.merged_out.gz"
|
||||
"default":"$id.$key.merged_out.gz"
|
||||
}
|
||||
|
||||
|
||||
@@ -322,7 +322,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. In the merging mode, write the unmerged or unpaired reads to the file specified by --merge",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. In the merging mode, write the unmerged or unpaired reads to the file specified by --merge. Disabled by default.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -343,7 +343,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Indicate that \u003cin1\u003e is an interleaved FASTQ which contains both read1 and read2",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Indicate that \u003cin1\u003e is an interleaved FASTQ which contains both read1 and read2. Disabled by default.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -354,7 +354,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. The MGI FASTQ ID format is not compatible with many BAM operation tools, enable this option to fix it",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. The MGI FASTQ ID format is not compatible with many BAM operation tools, enable this option to fix it.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -365,7 +365,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Indicate the input is using phred64 scoring (it\u0027ll be converted to phred33, so the output will still be phred33)\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Indicate the input is using phred64 scoring (it\u0027ll be converted to phred33, so the output will still be phred33)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -396,7 +396,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t overwrite existing files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t overwrite existing files. Overwritting is allowed by default.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -417,7 +417,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output verbose log information (i",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output verbose log information (i.e. when every 1M reads are processed)."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -458,7 +458,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable deduplication to drop the duplicated reads/pairs\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable deduplication to drop the duplicated reads/pairs\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -479,7 +479,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t evaluate duplication rate to save time and use less memory",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t evaluate duplication rate to save time and use less memory.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -500,7 +500,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Force polyG tail trimming, by default trimming is automatically enabled for Illumina NextSeq/NovaSeq data\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Force polyG tail trimming, by default trimming is automatically enabled for Illumina NextSeq/NovaSeq data\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -521,7 +521,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disable polyG tail trimming, by default trimming is automatically enabled for Illumina NextSeq/NovaSeq data\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disable polyG tail trimming, by default trimming is automatically enabled for Illumina NextSeq/NovaSeq data\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -542,7 +542,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable polyX trimming in 3\u0027 ends",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable polyX trimming in 3\u0027 ends.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -693,7 +693,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Quality filtering is enabled by default",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Quality filtering is enabled by default. If this option is specified, quality filtering is disabled.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -754,7 +754,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Length filtering is enabled by default",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Length filtering is enabled by default. If this option is specified, length filtering is disabled.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -795,7 +795,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable low complexity filter",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable low complexity filter. The complexity is defined as the percentage of base that is different from its next base (base[i] != base[i+1]).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -866,7 +866,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable base correction in overlapped regions (only for PE data), default is disabled",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable base correction in overlapped regions (only for PE data), default is disabled.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -917,7 +917,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable unique molecular identifier (UMI) preprocessing",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable unique molecular identifier (UMI) preprocessing.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -990,7 +990,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Enable overrepresentation analysis",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Enable overrepresentation analysis.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -340,9 +340,9 @@ build_info:
|
||||
output: "target/nextflow/fastqc"
|
||||
executable: "target/nextflow/fastqc/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3182,9 +3182,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/fastqc",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"description": "Type: List of `file`, default: `$id.$key.html_*.html`, example: `*.html`, multiple_sep: `\";\"`. Create the HTML report of the results",
|
||||
"help_text": "Type: List of `file`, default: `$id.$key.html_*.html`, example: `*.html`, multiple_sep: `\";\"`. Create the HTML report of the results. \n\u0027*\u0027 wild card must be provided in the output file name. \nWild card will be replaced by the input file basename.\ne.g. \n --input \"sample_1.fq\"\n --html \"*.html\"\n would create an output html file named sample_1.html\n"
|
||||
,
|
||||
"default": "$id.$key.html_*.html"
|
||||
"default":"$id.$key.html_*.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"description": "Type: List of `file`, default: `$id.$key.zip_*.zip`, example: `*.zip`, multiple_sep: `\";\"`. Create the zip file(s) containing: html report, data, images, icons, summary, etc",
|
||||
"help_text": "Type: List of `file`, default: `$id.$key.zip_*.zip`, example: `*.zip`, multiple_sep: `\";\"`. Create the zip file(s) containing: html report, data, images, icons, summary, etc.\n\u0027*\u0027 wild card must be provided in the output file name.\nWild card will be replaced by the input basename.\ne.g. \n --input \"sample_1.fq\"\n --html \"*.zip\"\n would create an output zip file named sample_1.zip\n"
|
||||
,
|
||||
"default": "$id.$key.zip_*.zip"
|
||||
"default":"$id.$key.zip_*.zip"
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"description": "Type: List of `file`, default: `$id.$key.summary_*.txt`, example: `*_summary.txt`, multiple_sep: `\";\"`. Create the summary file(s)",
|
||||
"help_text": "Type: List of `file`, default: `$id.$key.summary_*.txt`, example: `*_summary.txt`, multiple_sep: `\";\"`. Create the summary file(s).\n\u0027*\u0027 wild card must be provided in the output file name.\nWild card will be replaced by the input basename.\ne.g. \n --input \"sample_1.fq\"\n --summary \"*_summary.txt\"\n would create an output summary.txt file named sample_1_summary.txt\n"
|
||||
,
|
||||
"default": "$id.$key.summary_*.txt"
|
||||
"default":"$id.$key.summary_*.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
"description": "Type: List of `file`, default: `$id.$key.data_*.txt`, example: `*_data.txt`, multiple_sep: `\";\"`. Create the data file(s)",
|
||||
"help_text": "Type: List of `file`, default: `$id.$key.data_*.txt`, example: `*_data.txt`, multiple_sep: `\";\"`. Create the data file(s).\n\u0027*\u0027 wild card must be provided in the output file name.\nWild card will be replaced by the input basename.\ne.g. \n --input \"sample_1.fq\"\n --summary \"*_data.txt\"\n would create an output data.txt file named sample_1_data.txt\n"
|
||||
,
|
||||
"default": "$id.$key.data_*.txt"
|
||||
"default":"$id.$key.data_*.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Files come from raw casava output",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Files come from raw casava output. Files in the same sample\ngroup (differing only by the group number) will be analysed\nas a set rather than individually. Sequences with the filter\nflag set in the header will be excluded from the analysis.\nFiles must have the same names given to them by casava\n(including being gzipped and ending with .gz) otherwise they\nwon\u0027t be grouped together correctly.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Files come from nanopore sequences and are in fast5 format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Files come from nanopore sequences and are in fast5 format. In\nthis mode you can pass in directories to process and the program\nwill take in all fast5 files within those directories and produce\na single output file from the sequences found in all files.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If running with --casava then don\u0027t remove read flagged by\ncasava as poor quality when performing the QC analysis",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If running with --casava then don\u0027t remove read flagged by\ncasava as poor quality when performing the QC analysis.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disable grouping of bases for reads \u003e50bp",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disable grouping of bases for reads \u003e50bp. \nAll reports will show data for every base in the read. \nWARNING: Using this option will cause fastqc to crash \nand burn if you use it on really long reads, and your \nplots may end up a ridiculous size. You have been warned!\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -198,7 +198,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Suppress all progress messages on stdout and only report errors",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Suppress all progress messages on stdout and only report errors.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -645,9 +645,9 @@ build_info:
|
||||
output: "target/nextflow/featurecounts"
|
||||
executable: "target/nextflow/featurecounts/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3549,9 +3549,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/featurecounts",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.counts.tsv`, example: `features.tsv`. Name of output file including read counts in tab delimited format",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.counts.tsv`, example: `features.tsv`. Name of output file including read counts in tab delimited format.\n"
|
||||
,
|
||||
"default": "$id.$key.counts.tsv"
|
||||
"default":"$id.$key.counts.tsv"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.summary.tsv`, example: `summary.tsv`. Summary statistics of counting results in tab delimited format",
|
||||
"help_text": "Type: `file`, default: `$id.$key.summary.tsv`, example: `summary.tsv`. Summary statistics of counting results in tab delimited format.\n"
|
||||
,
|
||||
"default": "$id.$key.summary.tsv"
|
||||
"default":"$id.$key.summary.tsv"
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.junctions.txt`, example: `junctions.txt`. Count number of reads supporting each exon-exon junction",
|
||||
"help_text": "Type: `file`, default: `$id.$key.junctions.txt`, example: `junctions.txt`. Count number of reads supporting each exon-exon junction. Junctions were identified from those exon-spanning reads in the input (containing \u0027N\u0027 in CIGAR string).\n"
|
||||
,
|
||||
"default": "$id.$key.junctions.txt"
|
||||
"default":"$id.$key.junctions.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Perform read counting at feature level (eg",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Perform read counting at feature level (eg. counting reads for exons rather than genes).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Assign reads to all their overlapping meta-features (or features if \u0027--feature_level\u0027 is specified)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Assign reads to all their overlapping meta-features (or features if \u0027--feature_level\u0027 is specified).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -217,7 +217,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Assign reads to a meta-feature/feature that has the largest number of overlapping bases",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Assign reads to a meta-feature/feature that has the largest number of overlapping bases.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -290,7 +290,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Multi-mapping reads will also be counted",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Multi-mapping reads will also be counted. For a multi-mapping read, all its reported alignments will be counted. The \u0027NH\u0027 tag in BAM/SAM input is used to detect multi-mapping reads.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -311,7 +311,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Assign fractional counts to features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Assign fractional counts to features. This option must be used together with \u0027--multi_mapping\u0027 or \u0027--overlapping\u0027 or both. When \u0027--multi_mapping\u0027 is specified, each reported alignment from a multi-mapping read (identified via \u0027NH\u0027 tag) will carry a fractional count of 1/x, instead of 1 (one), where x is the total number of alignments reported for the same read. When \u0027--overlapping\u0027 is specified, each overlapping feature will receive a fractional count of 1/y, where y is the total number of features overlapping with the read. When both \u0027--multi_mapping\u0027 and \u0027--overlapping\u0027 are specified, each alignment will carry a fractional count of 1/(x*y).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -342,7 +342,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Count split alignments only (ie",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Count split alignments only (ie. alignments with CIGAR string containing \u0027N\u0027). An example of split alignments is exon-spanning reads in RNA-seq data.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -353,7 +353,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If specified, only non-split alignments (CIGAR strings do not contain letter \u0027N\u0027) will be counted",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If specified, only non-split alignments (CIGAR strings do not contain letter \u0027N\u0027) will be counted. All the other alignments will be ignored.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -364,7 +364,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Count primary alignments only",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Count primary alignments only. Primary alignments are identified using bit 0x100 in SAM/BAM FLAG field.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -375,7 +375,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ignore duplicate reads in read counting",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ignore duplicate reads in read counting. Duplicate reads are identified using bit Ox400 in BAM/SAM FLAG field. The whole read pair is ignored if one of the reads is a duplicate read for paired end data.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -438,7 +438,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Specify that input data contain paired-end reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Specify that input data contain paired-end reads. To perform fragment counting (ie. counting read pairs), the \u0027--countReadPairs\u0027 parameter should also be specified in addition to this parameter.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -449,7 +449,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Count read pairs (fragments) instead of reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Count read pairs (fragments) instead of reads. This option is only applicable for paired-end reads.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -460,7 +460,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Count read pairs (fragments) instead of reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Count read pairs (fragments) instead of reads. This option is only applicable for paired-end reads.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -471,7 +471,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Check validity of paired-end distance when counting read pairs",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Check validity of paired-end distance when counting read pairs. Use \u0027--min_length\u0027 and \u0027--max_length\u0027 to set thresholds.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -502,7 +502,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not count read pairs that have their two ends mapping to different chromosomes or mapping to same chromosome but on different strands",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not count read pairs that have their two ends mapping to different chromosomes or mapping to same chromosome but on different strands.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -513,7 +513,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not sort reads in BAM/SAM input",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not sort reads in BAM/SAM input. Note that reads from the same pair are required to be located next to each other in the input.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -534,7 +534,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Assign reads by read group",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Assign reads by read group. \"RG\" tag is required to be present in the input BAM/SAM files.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -555,7 +555,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Count long reads such as Nanopore and PacBio reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Count long reads such as Nanopore and PacBio reads. Long read counting can only run in one thread and only reads (not read-pairs) can be counted. There is no limitation on the number of \u0027M\u0027 operations allowed in a CIGAR string in long read counting.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -576,7 +576,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.detailed_results.detailed_results`, example: `detailed_results`. Directory to save the detailed assignment results",
|
||||
"help_text": "Type: `file`, default: `$id.$key.detailed_results.detailed_results`, example: `detailed_results`. Directory to save the detailed assignment results. Use `--detailed_results_format` to determine the format of the detailed results.\n"
|
||||
,
|
||||
"default": "$id.$key.detailed_results.detailed_results"
|
||||
"default":"$id.$key.detailed_results.detailed_results"
|
||||
}
|
||||
|
||||
|
||||
@@ -619,7 +619,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output verbose information for debugging, such as un-matched chromosome/contig names",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output verbose information for debugging, such as un-matched chromosome/contig names.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -190,9 +190,9 @@ build_info:
|
||||
output: "target/nextflow/fq_subsample"
|
||||
executable: "target/nextflow/fq_subsample/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3032,9 +3032,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/fq_subsample",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_1.output_1`. Sampled read 1 fastq files",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_1.output_1`. Sampled read 1 fastq files. Output will be gzipped if ends in `.gz`."
|
||||
,
|
||||
"default": "$id.$key.output_1.output_1"
|
||||
"default":"$id.$key.output_1.output_1"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_2.output_2`. Sampled read 2 fastq files",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_2.output_2`. Sampled read 2 fastq files. Output will be gzipped if ends in `.gz`."
|
||||
,
|
||||
"default": "$id.$key.output_2.output_2"
|
||||
"default":"$id.$key.output_2.output_2"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -685,9 +685,9 @@ build_info:
|
||||
output: "target/nextflow/gffread"
|
||||
executable: "target/nextflow/gffread/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3606,9 +3606,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/gffread",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.outfile.gff`, example: `output.gff`. Write the output records into \u003coutfile\u003e",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.outfile.gff`, example: `output.gff`. Write the output records into \u003coutfile\u003e.\n"
|
||||
,
|
||||
"default": "$id.$key.outfile.gff"
|
||||
"default":"$id.$key.outfile.gff"
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Make sure that the lowest level GFF features are considered \"exon\" features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Make sure that the lowest level GFF features are considered \"exon\" features.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For single-line genes not parenting any transcripts, add an exon feature spanning \nthe entire gene (treat it as a transcript)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For single-line genes not parenting any transcripts, add an exon feature spanning \nthe entire gene (treat it as a transcript).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Try to find a parent gene overlapping/containing a transcript that does not have \nany explicit gene Parent",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Try to find a parent gene overlapping/containing a transcript that does not have \nany explicit gene Parent.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Decode url encoded characters within attributes",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Decode url encoded characters within attributes.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -125,7 +125,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Merge very close exons into a single exon (when intron size\u003c4)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Merge very close exons into a single exon (when intron size\u003c4).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -136,7 +136,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output the junctions and the corresponding transcripts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output the junctions and the corresponding transcripts.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.spliced_exons.fa`, example: `exons.fa`. Write a fasta file with spliced exons for each transcript",
|
||||
"help_text": "Type: `file`, default: `$id.$key.spliced_exons.fa`, example: `exons.fa`. Write a fasta file with spliced exons for each transcript.\n"
|
||||
,
|
||||
"default": "$id.$key.spliced_exons.fa"
|
||||
"default":"$id.$key.spliced_exons.fa"
|
||||
}
|
||||
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --spliced_exons, disable the output of CDS info in the FASTA file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --spliced_exons, disable the output of CDS info in the FASTA file.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -199,7 +199,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --spliced_exons, --spliced_cds and -tr_cds options, write in the FASTA defline \nall the exon coordinates projected onto the spliced sequence",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --spliced_exons, --spliced_cds and -tr_cds options, write in the FASTA defline \nall the exon coordinates projected onto the spliced sequence.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -210,7 +210,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --tr_cds option, use \u0027*\u0027 instead of \u0027",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --tr_cds option, use \u0027*\u0027 instead of \u0027.\u0027 as stop codon translation.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -221,7 +221,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ensembl GTF to GFF3 conversion, adds version to IDs",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ensembl GTF to GFF3 conversion, adds version to IDs.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -242,7 +242,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Main output will be GTF instead of GFF3",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Main output will be GTF instead of GFF3.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -253,7 +253,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output records in BED format instead of default GFF3",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output records in BED format instead of default GFF3.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -264,7 +264,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output \"transcript line format\" which is like GFF but with exons and CDS related \nfeatures stored as GFF attributes in the transcript feature line, like this:\n exoncount=N;exons=\u003cexons\u003e;CDSphase=\u003cN\u003e;CDS=\u003cCDScoords\u003e\n\u003cexons\u003e is a comma-delimited list of exon_start-exon_end coordinates;\n\u003cCDScoords\u003e is CDS_start:CDS_end coordinates or a list like \u003cexons\u003e",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output \"transcript line format\" which is like GFF but with exons and CDS related \nfeatures stored as GFF attributes in the transcript feature line, like this:\n exoncount=N;exons=\u003cexons\u003e;CDSphase=\u003cN\u003e;CDS=\u003cCDScoords\u003e\n\u003cexons\u003e is a comma-delimited list of exon_start-exon_end coordinates;\n\u003cCDScoords\u003e is CDS_start:CDS_end coordinates or a list like \u003cexons\u003e.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -285,7 +285,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Expose (warn about) duplicate transcript IDs and other potential problems with the \ngiven GFF/GTF records",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Expose (warn about) duplicate transcript IDs and other potential problems with the \ngiven GFF/GTF records.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -356,7 +356,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --range option, discard all transcripts that are not fully contained within the given \nrange",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --range option, discard all transcripts that are not fully contained within the given \nrange.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -377,7 +377,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard single-exon transcripts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard single-exon transcripts.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -388,7 +388,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Coding only: discard mRNAs that have no CDS features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Coding only: discard mRNAs that have no CDS features.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -399,7 +399,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Non-coding only: discard mRNAs that have CDS features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Non-coding only: discard mRNAs that have CDS features.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -410,7 +410,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard locus features and attributes found in the input",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard locus features and attributes found in the input.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -421,7 +421,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use the description field from \u003cseq_info",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use the description field from \u003cseq_info.fsize\u003e and add it as the value for a \u0027descr\u0027 \nattribute to the GFF record.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -442,7 +442,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Chromosomes (reference sequences) are sorted alphabetically",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Chromosomes (reference sequences) are sorted alphabetically.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -473,7 +473,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Keep all GFF attributes (for non-exon features)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Keep all GFF attributes (for non-exon features).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -484,7 +484,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For -F option, do not attempt to reduce redundant exon/CDS attributes",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For -F option, do not attempt to reduce redundant exon/CDS attributes.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -495,7 +495,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not keep exon attributes, move them to the transcript feature (for GFF3 output)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not keep exon attributes, move them to the transcript feature (for GFF3 output).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -516,7 +516,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. In transcript-only mode (default), also preserve gene records",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. In transcript-only mode (default), also preserve gene records.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -527,7 +527,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For GFF3 input/output, try to preserve comments",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For GFF3 input/output, try to preserve comments.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -538,7 +538,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. process other non-transcript GFF records (by default non-transcript records are ignored)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. process other non-transcript GFF records (by default non-transcript records are ignored).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -549,7 +549,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard any mRNAs with CDS having in-frame stop codons (requires --genome)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard any mRNAs with CDS having in-frame stop codons (requires --genome).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -560,7 +560,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --rm_stop_codons option, check and adjust the starting CDS phase if the original phase\nleads to a translation with an in-frame stop codon",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --rm_stop_codons option, check and adjust the starting CDS phase if the original phase\nleads to a translation with an in-frame stop codon.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -571,7 +571,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For -V option, single-exon transcripts are also checked on the opposite strand (requires \n--genome)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For -V option, single-exon transcripts are also checked on the opposite strand (requires \n--genome). \n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -582,7 +582,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add transcript level GFF attributes about the coding status of each transcript, including \npartialness or in-frame stop codons (requires --genome)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add transcript level GFF attributes about the coding status of each transcript, including \npartialness or in-frame stop codons (requires --genome).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -593,7 +593,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add a \"hasCDS\" attribute with value \"true\" for transcripts that have CDS features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add a \"hasCDS\" attribute with value \"true\" for transcripts that have CDS features. \n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -604,7 +604,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Stop codon adjustment: enables --coding_status and performs automatic adjustment of the CDS stop \ncoordinate if premature or downstream",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Stop codon adjustment: enables --coding_status and performs automatic adjustment of the CDS stop \ncoordinate if premature or downstream.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -615,7 +615,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard multi-exon mRNAs that have any intron with a non-canonical splice site consensus \n(i",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard multi-exon mRNAs that have any intron with a non-canonical splice site consensus \n(i.e. not GT-AG, GC-AG or AT-AC).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -626,7 +626,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard any mRNAs that either lack initial START codon or the terminal STOP codon, or \nhave an in-frame stop codon (i",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard any mRNAs that either lack initial START codon or the terminal STOP codon, or \nhave an in-frame stop codon (i.e. only print mRNAs with a complete CDS).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -637,7 +637,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Filter out records matching the \u0027pseudo\u0027 keyword",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Filter out records matching the \u0027pseudo\u0027 keyword.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -648,7 +648,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input should be parsed as BED format (automatic if the input filename ends with ",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input should be parsed as BED format (automatic if the input filename ends with .bed*).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -659,7 +659,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input GFF-like one-line-per-transcript format without exon/CDS features (see --tlf option \nbelow); automatic if the input filename ends with ",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input GFF-like one-line-per-transcript format without exon/CDS features (see --tlf option \nbelow); automatic if the input filename ends with .tlf).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -670,7 +670,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Fast processing of input GFF/BED transcripts as they are received (no sorting, exons must \nbe grouped by transcript in the input data)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Fast processing of input GFF/BED transcripts as they are received (no sorting, exons must \nbe grouped by transcript in the input data).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -691,7 +691,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Cluster the input transcripts into loci, discarding \"redundant\" transcripts (those with \nthe same exact introns and fully contained or equal boundaries)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Cluster the input transcripts into loci, discarding \"redundant\" transcripts (those with \nthe same exact introns and fully contained or equal boundaries).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -712,7 +712,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Same as --merge but without discarding any of the \"duplicate\" transcripts, only create \n\"locus\" features",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Same as --merge but without discarding any of the \"duplicate\" transcripts, only create \n\"locus\" features.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -723,7 +723,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --merge option: also discard as redundant the shorter, fully contained transcripts (intron \nchains matching a part of the container)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --merge option: also discard as redundant the shorter, fully contained transcripts (intron \nchains matching a part of the container).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -734,7 +734,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --merge option, no longer require boundary containment when assessing redundancy (can be \ncombined with --rm_redundant); only introns have to match for multi-exon transcripts, and \u003e=80%\noverlap for single-exon transcripts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --merge option, no longer require boundary containment when assessing redundancy (can be \ncombined with --rm_redundant); only introns have to match for multi-exon transcripts, and \u003e=80%\noverlap for single-exon transcripts.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -745,7 +745,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. For --merge option, enforce --no_boundary but also discard overlapping single-exon transcripts,\neven on the opposite strand (can be combined with --rm_redudant)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. For --merge option, enforce --no_boundary but also discard overlapping single-exon transcripts,\neven on the opposite strand (can be combined with --rm_redudant).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -218,9 +218,9 @@ build_info:
|
||||
output: "target/nextflow/kallisto/kallisto_index"
|
||||
executable: "target/nextflow/kallisto/kallisto_index/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3071,9 +3071,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/kallisto/kallisto_index",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.index.index`, example: `Kallisto_index`. ",
|
||||
"help_text": "Type: `file`, default: `$id.$key.index.index`, example: `Kallisto_index`. "
|
||||
,
|
||||
"default": "$id.$key.index.index"
|
||||
"default":"$id.$key.index.index"
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Replace repeated target names with unique names",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Replace repeated target names with unique names.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Generate index from a FASTA-file containing amino acid sequences",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Generate index from a FASTA-file containing amino acid sequences.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Generate index where sequences are distinguished by the sequence names",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Generate index where sequences are distinguished by the sequence names.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -246,9 +246,9 @@ build_info:
|
||||
output: "target/nextflow/kallisto/kallisto_quant"
|
||||
executable: "target/nextflow/kallisto/kallisto_quant/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3105,9 +3105,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/kallisto/kallisto_quant",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output_dir.output_dir`. Directory to write output to",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output_dir.output_dir`. Directory to write output to."
|
||||
,
|
||||
"default": "$id.$key.output_dir.output_dir"
|
||||
"default":"$id.$key.output_dir.output_dir"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.log.log`. File containing log information from running kallisto quant",
|
||||
"help_text": "Type: `file`, default: `$id.$key.log.log`. File containing log information from running kallisto quant"
|
||||
,
|
||||
"default": "$id.$key.log.log"
|
||||
"default":"$id.$key.log.log"
|
||||
}
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Single end mode",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Single end mode."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Include reads where unobserved rest of fragment is predicted to lie outside a transcript",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Include reads where unobserved rest of fragment is predicted to lie outside a transcript."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Strand specific reads, first read forward",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Strand specific reads, first read forward."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Strand specific reads, first read reverse",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Strand specific reads, first read reverse."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -146,7 +146,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output plaintext instead of HDF5",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output plaintext instead of HDF5."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -456,9 +456,9 @@ build_info:
|
||||
output: "target/nextflow/multiqc"
|
||||
executable: "target/nextflow/multiqc/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3366,9 +3366,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/multiqc",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_report.html`, example: `multiqc_report.html`. Filepath of the generated report",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_report.html`, example: `multiqc_report.html`. Filepath of the generated report.\n"
|
||||
,
|
||||
"default": "$id.$key.output_report.html"
|
||||
"default":"$id.$key.output_report.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_data.output_data`, example: `multiqc_data`. Output directory for parsed data files",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_data.output_data`, example: `multiqc_data`. Output directory for parsed data files. If not provided, parsed data will not be published.\n"
|
||||
,
|
||||
"default": "$id.$key.output_data.output_data"
|
||||
"default":"$id.$key.output_data.output_data"
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_plots.output_plots`, example: `multiqc_plots`. Output directory for generated plots",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_plots.output_plots`, example: `multiqc_plots`. Output directory for generated plots. If not provided, plots will not be published.\n"
|
||||
,
|
||||
"default": "$id.$key.output_plots.output_plots"
|
||||
"default":"$id.$key.output_plots.output_plots"
|
||||
}
|
||||
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ignore symlinked directories and files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ignore symlinked directories and files"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Prepend directory to sample names to avoid clashing filenames",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Prepend directory to sample names to avoid clashing filenames"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not clean the sample names (leave as full file name)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not clean the sample names (leave as full file name)"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use the log filename as the sample name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use the log filename as the sample name"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -269,7 +269,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add analysis of how long MultiQC takes to run to the report\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add analysis of how long MultiQC takes to run to the report\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -290,7 +290,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Increase output verbosity",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Increase output verbosity.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -301,7 +301,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Only show log warnings\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Only show log warnings\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -312,7 +312,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t catch exceptions, run additional code checks to help development",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t catch exceptions, run additional code checks to help development.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -323,7 +323,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Development mode",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Development mode. Do not compress and minimise JS, export uncompressed plot data.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -334,7 +334,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Require all explicitly requested modules to have log files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Require all explicitly requested modules to have log files. If not, MultiQC will exit with an error.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -345,7 +345,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t upload generated report to MegaQC, even if MegaQC options are found",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t upload generated report to MegaQC, even if MegaQC options are found.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -356,7 +356,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disable coloured log output",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disable coloured log output.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -387,7 +387,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use only flat plots (static images)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use only flat plots (static images).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -398,7 +398,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use only interactive plots (in-browser Javascript)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use only interactive plots (in-browser Javascript).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -409,7 +409,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Force the parsed data directory to be created",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Force the parsed data directory to be created.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -420,7 +420,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Prevent the parsed data directory from being created",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Prevent the parsed data directory from being created.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -431,7 +431,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Compress the data directory",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Compress the data directory.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -454,7 +454,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Creates PDF report with the \u0027simple\u0027 template",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Creates PDF report with the \u0027simple\u0027 template. Requires Pandoc to be installed.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -264,9 +264,9 @@ build_info:
|
||||
output: "target/nextflow/qualimap/qualimap_rnaseq"
|
||||
executable: "target/nextflow/qualimap/qualimap_rnaseq/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3129,9 +3129,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/qualimap/qualimap_rnaseq",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.qc_results.txt`, example: `rnaseq_qc_results.txt`. Text file containing the RNAseq QC results",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.qc_results.txt`, example: `rnaseq_qc_results.txt`. Text file containing the RNAseq QC results."
|
||||
,
|
||||
"default": "$id.$key.qc_results.txt"
|
||||
"default":"$id.$key.qc_results.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.counts.counts`. Output file for computed counts",
|
||||
"help_text": "Type: `file`, default: `$id.$key.counts.counts`. Output file for computed counts."
|
||||
,
|
||||
"default": "$id.$key.counts.counts"
|
||||
"default":"$id.$key.counts.counts"
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.report.html`, example: `report.html`. Report output file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.report.html`, example: `report.html`. Report output file. Supported formats are PDF or HTML."
|
||||
,
|
||||
"default": "$id.$key.report.html"
|
||||
"default":"$id.$key.report.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Setting this flag for paired-end experiments will result in counting fragments instead of reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Setting this flag for paired-end experiments will result in counting fragments instead of reads."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Setting this flag indicates that the input file is already sorted by name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Setting this flag indicates that the input file is already sorted by name. If flag is not set, additional sorting by name will be performed. Only requiredfor paired-end analysis."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -852,9 +852,9 @@ build_info:
|
||||
output: "target/nextflow/rsem/rsem_calculate_expression"
|
||||
executable: "target/nextflow/rsem/rsem_calculate_expression/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3661,9 +3661,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/rsem/rsem_calculate_expression",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Paired-end reads or not?",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Paired-end reads or not?"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.counts_gene.results`, example: `$id.genes.results`. Expression counts on gene level",
|
||||
"help_text": "Type: `file`, default: `$id.$key.counts_gene.results`, example: `$id.genes.results`. Expression counts on gene level"
|
||||
,
|
||||
"default": "$id.$key.counts_gene.results"
|
||||
"default":"$id.$key.counts_gene.results"
|
||||
}
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.counts_transcripts.results`, example: `$id.isoforms.results`. Expression counts on transcript level",
|
||||
"help_text": "Type: `file`, default: `$id.$key.counts_transcripts.results`, example: `$id.isoforms.results`. Expression counts on transcript level"
|
||||
,
|
||||
"default": "$id.$key.counts_transcripts.results"
|
||||
"default":"$id.$key.counts_transcripts.results"
|
||||
}
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.stat.stat`, example: `$id.stat`. RSEM statistics",
|
||||
"help_text": "Type: `file`, default: `$id.$key.stat.stat`, example: `$id.stat`. RSEM statistics"
|
||||
,
|
||||
"default": "$id.$key.stat.stat"
|
||||
"default":"$id.$key.stat.stat"
|
||||
}
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.logs.log`, example: `$id.log`. RSEM logs",
|
||||
"help_text": "Type: `file`, default: `$id.$key.logs.log`, example: `$id.log`. RSEM logs"
|
||||
,
|
||||
"default": "$id.$key.logs.log"
|
||||
"default":"$id.$key.logs.log"
|
||||
}
|
||||
|
||||
|
||||
@@ -137,7 +137,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.bam_star.bam`, example: `$id.STAR.genome.bam`. BAM file generated by STAR (optional)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.bam_star.bam`, example: `$id.STAR.genome.bam`. BAM file generated by STAR (optional)"
|
||||
,
|
||||
"default": "$id.$key.bam_star.bam"
|
||||
"default":"$id.$key.bam_star.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.bam_genome.bam`, example: `$id.genome.bam`. Genome BAM file (optional)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.bam_genome.bam`, example: `$id.genome.bam`. Genome BAM file (optional)"
|
||||
,
|
||||
"default": "$id.$key.bam_genome.bam"
|
||||
"default":"$id.$key.bam_genome.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -159,7 +159,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.bam_transcript.bam`, example: `$id.transcript.bam`. Transcript BAM file (optional)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.bam_transcript.bam`, example: `$id.transcript.bam`. Transcript BAM file (optional)"
|
||||
,
|
||||
"default": "$id.$key.bam_transcript.bam"
|
||||
"default":"$id.$key.bam_transcript.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -170,7 +170,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Sort BAM file aligned under transcript coordidate by read name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Sort BAM file aligned under transcript coordidate by read name. Setting this option on will produce \ndeterministic maximum likelihood estimations from independent runs. Note that sorting will take long \ntime and lots of memory.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -181,7 +181,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not output any BAM file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not output any BAM file."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -192,7 +192,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. When RSEM generates a BAM file, instead of outputting all alignments a read has with their posterior \nprobabilities, one alignment is sampled according to the posterior probabilities",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. When RSEM generates a BAM file, instead of outputting all alignments a read has with their posterior \nprobabilities, one alignment is sampled according to the posterior probabilities. The sampling procedure \nincludes the alignment to the \"noise\" transcript, which does not appear in the BAM file. Only the \nsampled alignment has a weight of 1. All other alignments have weight 0. If the \"noise\" transcript is \nsampled, all alignments appeared in the BAM file should have weight 0.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -203,7 +203,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Generate a BAM file, \u0027sample_name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Generate a BAM file, \u0027sample_name.genome.bam\u0027, with alignments mapped to genomic coordinates and \nannotated with their posterior probabilities. In addition, RSEM will call samtools (included in RSEM \npackage) to sort and index the bam file. \u0027sample_name.genome.sorted.bam\u0027 and \u0027sample_name.genome.sorted.bam.bai\u0027 \nwill be generated.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -214,7 +214,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Sort RSEM generated transcript and genome BAM files by coordinates and build associated indices",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Sort RSEM generated transcript and genome BAM files by coordinates and build associated indices.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -235,7 +235,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input reads do not contain quality scores",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input reads do not contain quality scores."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input file contains alignments in SAM/BAM/CRAM format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input file contains alignments in SAM/BAM/CRAM format. The exact file format will be determined \nautomatically.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use Bowtie 2 instead of Bowtie to align reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use Bowtie 2 instead of Bowtie to align reads. Since currently RSEM does not handle indel, local \nand discordant alignments, the Bowtie2 parameters are set in a way to avoid those alignments. In \nparticular, we use options \u0027--sensitive --dpad 0 --gbar 99999999 --mp 1,1 --np 1 --score_min L,0,-0.1\u0027 \nby default. The last parameter of \u0027--score_min\u0027, \u0027-0.1\u0027, is the negative of maximum mismatch rate. \nThis rate can be set by option \u0027--bowtie2_mismatch_rate\u0027. If reads are paired-end, we additionally \nuse options \u0027--no_mixed\u0027 and \u0027--no_discordant\u0027.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -278,7 +278,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use STAR to align reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use STAR to align reads. Alignment parameters are from ENCODE3\u0027s STAR-RSEM pipeline. To save \ncomputational time and memory resources, STAR\u0027s Output BAM file is unsorted. It is stored in RSEM\u0027s \ntemporary directory with name as \u0027sample_name.bam\u0027. Each STAR job will have its own private copy of \nthe genome in memory.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -289,7 +289,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use HISAT2 to align reads to the transcriptome according to Human Cell Atlast",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use HISAT2 to align reads to the transcriptome according to Human Cell Atlast.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -300,7 +300,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If gene_name/transcript_name is available, append it to the end of gene_id/transcript_id (separated \nby \u0027_\u0027) in files \u0027sample_name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If gene_name/transcript_name is available, append it to the end of gene_id/transcript_id (separated \nby \u0027_\u0027) in files \u0027sample_name.isoforms.results\u0027 and \u0027sample_name.genes.results\u0027.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -321,7 +321,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default, RSEM uses Dirichlet(1) as the prior to calculate posterior mean estimates and credibility \nintervals",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default, RSEM uses Dirichlet(1) as the prior to calculate posterior mean estimates and credibility \nintervals. However, much less genes are expressed in single cell RNA-Seq data. Thus, if you want to \ncompute posterior mean estimates and/or credibility intervals and you have single-cell RNA-Seq data, \nyou are recommended to turn on this option. Then RSEM will use Dirichlet(0.1) as the prior which \nencourage the sparsity of the expression levels.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -332,7 +332,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Run RSEM\u0027s collapsed Gibbs sampler to calculate posterior mean estimates",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Run RSEM\u0027s collapsed Gibbs sampler to calculate posterior mean estimates."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -343,7 +343,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Calculate 95% credibility intervals and posterior mean estimates",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Calculate 95% credibility intervals and posterior mean estimates. The credibility level can be \nchanged by setting \u0027--ci_credibility_level\u0027.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -354,7 +354,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Suppress the output of logging information",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Suppress the output of logging information."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -385,7 +385,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input quality scores are encoded as Phred+64 (default for GA Pipeline ver",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input quality scores are encoded as Phred+64 (default for GA Pipeline ver. \u003e= 1.3). This option is \nused by Bowtie, Bowtie 2 and HISAT2. Otherwise, quality score will be encoded as Phred+33. (Default: false)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -396,7 +396,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input quality scores are solexa encoded (from GA Pipeline ver",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input quality scores are solexa encoded (from GA Pipeline ver. \u003c 1.3). This option is used by \nBowtie, Bowtie 2 and HISAT2. Otherwise, quality score will be encoded as Phred+33. (Default: false)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -481,7 +481,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input read file(s) is compressed by gzip",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input read file(s) is compressed by gzip. (Default: false)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -492,7 +492,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input read file(s) is compressed by bzip2",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input read file(s) is compressed by bzip2. (Default: false)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -503,7 +503,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Save the BAM file from STAR alignment under genomic coordinate to \u0027sample_name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Save the BAM file from STAR alignment under genomic coordinate to \u0027sample_name.STAR.genome.bam\u0027. \nThis file is NOT sorted by genomic coordinate. In this file, according to STAR\u0027s manual, \u0027paired \nends of an alignment are always adjacent, and multiple alignments of a read are adjacent as well\u0027. \n(Default: false)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -574,7 +574,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Set this option if you want to estimate the read start position distribution (RSPD) from data",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Set this option if you want to estimate the read start position distribution (RSPD) from data.\nOtherwise, RSEM will use a uniform RSPD.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -645,7 +645,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Keep temporary files generated by RSEM",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Keep temporary files generated by RSEM. RSEM creates a temporary directory, \u0027sample_name.temp\u0027, \ninto which it puts all intermediate output files. If this directory already exists, RSEM overwrites \nall files generated by previous RSEM runs inside of it. By default, after RSEM finishes, the \ntemporary directory is deleted. Set this option to prevent the deletion of this directory and the \nintermediate files inside of it.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -666,7 +666,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output time consumed by each step of RSEM to \u0027sample_name",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output time consumed by each step of RSEM to \u0027sample_name.time\u0027.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -687,7 +687,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Running prior-enhanced RSEM (pRSEM)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Running prior-enhanced RSEM (pRSEM). Prior parameters, i.e. isoform\u0027s initial pseudo-count for \nRSEM\u0027s Gibbs sampling, will be learned from input RNA-seq data and an external data set. When pRSEM \nneeds and only needs ChIP-seq peak information to partition isoforms (e.g. in pRSEM\u0027s default \npartition model), either ChIP-seq peak file (with the \u0027--chipseq_peak_file\u0027 option) or ChIP-seq \nFASTQ files for target and input and the path for Bowtie executables are required (with the \n\u0027--chipseq_target_read_files \u003cstring\u003e\u0027, \u0027--chipseq_control_read_files \u003cstring\u003e\u0027, and \u0027--bowtie_path \n\u003cpath\u003e options), otherwise, ChIP-seq FASTQ files for target and control and the path to Bowtie \nexecutables are required.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -748,7 +748,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Keep a maximum number of ChIP-seq reads that aligned to the same genomic interval",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Keep a maximum number of ChIP-seq reads that aligned to the same genomic interval. This option is used \nwhen running prior-enhanced RSEM, where prior is learned from multiple complementary data sets. This \noption is only in use when either \u0027--chipseq_read_files_multi_targets \u003cstring\u003e\u0027 or \n\u0027--chipseq_bed_files_multi_targets \u003cstring\u003e\u0027 is specified.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -416,9 +416,9 @@ build_info:
|
||||
output: "target/nextflow/rsem/rsem_prepare_reference"
|
||||
executable: "target/nextflow/rsem/rsem_prepare_reference/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3245,9 +3245,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/rsem/rsem_prepare_reference",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.output`. Directory containing reference files generated by RSEM",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.output`. Directory containing reference files generated by RSEM."
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This option is designed for untypical organisms, such as viruses, whose GFF3 files only contain genes",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This option is designed for untypical organisms, such as viruses, whose GFF3 files only contain genes. RSEM will assume each gene as a unique transcript when it converts the GFF3 file into GTF format."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -142,7 +142,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add poly(A) tails to the end of all reference isoforms",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add poly(A) tails to the end of all reference isoforms. The length of poly(A) tail added is specified by \u0027--polyA-length\u0027 option. STAR aligner users may not want to use this option."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -173,7 +173,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Build Bowtie indices",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Build Bowtie indices."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -184,7 +184,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Build Bowtie 2 indices",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Build Bowtie 2 indices."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -195,7 +195,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Build STAR indices",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Build STAR indices."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -216,7 +216,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Build HISAT2 indices on the transcriptome according to Human Cell Atlas (HCA) SMART-Seq2 pipeline",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Build HISAT2 indices on the transcriptome according to Human Cell Atlas (HCA) SMART-Seq2 pipeline."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -227,7 +227,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Suppress the output of logging information",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Suppress the output of logging information."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -248,7 +248,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. A Boolean indicating whether to prepare reference files for pRSEM, including building Bowtie indices for a genome and selecting training set isoforms",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. A Boolean indicating whether to prepare reference files for pRSEM, including building Bowtie indices for a genome and selecting training set isoforms. The index files will be used for aligning ChIP-seq reads in prior-enhanced RSEM and the training set isoforms will be used for learning prior. A path to Bowtie executables and a mappability file in bigWig format are required when this option is on. Currently, Bowtie2 is not supported for prior-enhanced RSEM."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -175,9 +175,9 @@ build_info:
|
||||
output: "target/nextflow/rseqc/rseqc_bamstat"
|
||||
executable: "target/nextflow/rseqc/rseqc_bamstat/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3036,9 +3036,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/rseqc/rseqc_bamstat",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output.output`. Output file (txt) with mapping quality statistics",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output.output`. Output file (txt) with mapping quality statistics."
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -201,9 +201,9 @@ build_info:
|
||||
output: "target/nextflow/rseqc/rseqc_inferexperiment"
|
||||
executable: "target/nextflow/rseqc/rseqc_inferexperiment/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3069,9 +3069,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/rseqc/rseqc_inferexperiment",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.txt`, example: `$id.strandedness.txt`. Output file (txt) of strandness report",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.txt`, example: `$id.strandedness.txt`. Output file (txt) of strandness report."
|
||||
,
|
||||
"default": "$id.$key.output.txt"
|
||||
"default":"$id.$key.output.txt"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -294,9 +294,9 @@ build_info:
|
||||
output: "target/nextflow/rseqc/rseqc_inner_distance"
|
||||
executable: "target/nextflow/rseqc/rseqc_inner_distance/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3169,9 +3169,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/rseqc/rseqc_inner_distance",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -110,7 +110,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_stats.output_stats`. output file (txt) with summary statistics of inner distances of paired reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_stats.output_stats`. output file (txt) with summary statistics of inner distances of paired reads"
|
||||
,
|
||||
"default": "$id.$key.output_stats.output_stats"
|
||||
"default":"$id.$key.output_stats.output_stats"
|
||||
}
|
||||
|
||||
|
||||
@@ -121,7 +121,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_dist.output_dist`. output file (txt) with inner distances of all paired reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_dist.output_dist`. output file (txt) with inner distances of all paired reads"
|
||||
,
|
||||
"default": "$id.$key.output_dist.output_dist"
|
||||
"default":"$id.$key.output_dist.output_dist"
|
||||
}
|
||||
|
||||
|
||||
@@ -132,7 +132,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_freq.output_freq`. output file (txt) with frequencies of inner distances of all paired reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_freq.output_freq`. output file (txt) with frequencies of inner distances of all paired reads"
|
||||
,
|
||||
"default": "$id.$key.output_freq.output_freq"
|
||||
"default":"$id.$key.output_freq.output_freq"
|
||||
}
|
||||
|
||||
|
||||
@@ -143,7 +143,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_plot.output_plot`. output file (pdf) with histogram plot of of inner distances of all paired reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_plot.output_plot`. output file (pdf) with histogram plot of of inner distances of all paired reads"
|
||||
,
|
||||
"default": "$id.$key.output_plot.output_plot"
|
||||
"default":"$id.$key.output_plot.output_plot"
|
||||
}
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output_plot_r.output_plot_r`. output file (R) with script of histogram plot of of inner distances of all paired reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output_plot_r.output_plot_r`. output file (R) with script of histogram plot of of inner distances of all paired reads"
|
||||
,
|
||||
"default": "$id.$key.output_plot_r.output_plot_r"
|
||||
"default":"$id.$key.output_plot_r.output_plot_r"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -277,9 +277,9 @@ build_info:
|
||||
output: "target/nextflow/salmon/salmon_index"
|
||||
executable: "target/nextflow/salmon/salmon_index/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3129,9 +3129,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/salmon/salmon_index",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This flag will expect the input transcript fasta to be in GENCODE format, and will split the transcript name at the first \u0027|\u0027 character",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This flag will expect the input transcript fasta to be in GENCODE format, and will split the transcript name at the first \u0027|\u0027 character. These reduced names will be used in the output and when looking for these transcripts in a gene to transcript GTF.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This flag will expect the input reference to be in the tsv file format, and will split the feature name at the first \u0027tab\u0027 character",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This flag will expect the input reference to be in the tsv file format, and will split the feature name at the first \u0027tab\u0027 character. These reduced names will be used in the output and when looking for the sequence of the features.GTF.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This flag will disable the default indexing behavior of discarding sequence-identical duplicate transcripts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This flag will disable the default indexing behavior of discarding sequence-identical duplicate transcripts. If this flag is passed, then duplicate transcripts that appear in the input will be retained and quantified separately.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Retain the fixed fasta file (without short transcripts and duplicates, clipped, etc",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Retain the fixed fasta file (without short transcripts and duplicates, clipped, etc.) generated during indexing.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Build the index using a sparse sampling of k-mer positions This will require less memory (especially during quantification), but will take longer to construct and can slow down mapping / alignment",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Build the index using a sparse sampling of k-mer positions This will require less memory (especially during quantification), but will take longer to construct and can slow down mapping / alignment.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -125,7 +125,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t clip poly-A tails from the ends of target sequences",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t clip poly-A tails from the ends of target sequences.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.index.index`, example: `Salmon_index`. Salmon index\n",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.index.index`, example: `Salmon_index`. Salmon index\n"
|
||||
,
|
||||
"default": "$id.$key.index.index"
|
||||
"default":"$id.$key.index.index"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1173,9 +1173,9 @@ build_info:
|
||||
output: "target/nextflow/salmon/salmon_quant"
|
||||
executable: "target/nextflow/salmon/salmon_quant/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3964,9 +3964,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/salmon/salmon_quant",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
"enum": ["A", "U", "SF", "SR", "IU", "IS", "ISF", "ISR", "OU", "OS", "OSF", "OSR", "MU", "MS", "MSF", "MSR"]
|
||||
|
||||
,
|
||||
"default": "A"
|
||||
"default":"A"
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Discard orphan alignments in the input [for alignment-based mode only]",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Discard orphan alignments in the input [for alignment-based mode only]. If this flag is passed, then only paired alignments will be considered toward quantification estimates. The default behavior is to consider orphan alignments if no valid paired mappings exist.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use alignment model for Oxford Nanopore long reads\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use alignment model for Oxford Nanopore long reads\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.output`, example: `quant_output`. Output quantification directory",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.output`, example: `quant_output`. Output quantification directory.\n"
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.quant_results.sf`, example: `quant.sf`. Salmon quantification file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.quant_results.sf`, example: `quant.sf`. Salmon quantification file.\n"
|
||||
,
|
||||
"default": "$id.$key.quant_results.sf"
|
||||
"default":"$id.$key.quant_results.sf"
|
||||
}
|
||||
|
||||
|
||||
@@ -187,7 +187,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Perform sequence-specific bias correction",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Perform sequence-specific bias correction.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -198,7 +198,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Perform fragment GC bias correction [beta for single-end reads]",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Perform fragment GC bias correction [beta for single-end reads].\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -209,7 +209,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Perform positional bias correction",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Perform positional bias correction.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -250,7 +250,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If you\u0027re using Salmon on a metagenomic dataset, consider setting this flag to disable parts of the abundance estimation model that make less sense for metagenomic data",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If you\u0027re using Salmon on a metagenomic dataset, consider setting this flag to disable parts of the abundance estimation model that make less sense for metagenomic data.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -281,7 +281,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nDiscard orphan mappings in selective-alignment mode",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nDiscard orphan mappings in selective-alignment mode. If this flag is passed then only paired mappings will be considered toward quantification estimates. The default behavior is to consider orphan mappings if no valid paired mappings exist. This flag is independent of the option to write the orphaned mappings to file (--writeOrphanLinks).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -352,7 +352,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nBy default, the heuristic of (Li 2018) is implemented, which terminates the chaining DP once a given number of valid backpointers are found",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nBy default, the heuristic of (Li 2018) is implemented, which terminates the chaining DP once a given number of valid backpointers are found. This speeds up the seed (MEM) chaining step, but may result in sub-optimal chains in complex situations (e.g. sequences with many repeats and overlapping repeats). Passing this flag will disable the chaining heuristic, and perform the full chaining dynamic program, guaranteeing the optimal chain is found in this step.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -423,7 +423,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllow dovetailing mappings",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllow dovetailing mappings.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -434,7 +434,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAttempt to recover the mates of orphaned reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAttempt to recover the mates of orphaned reads. This uses edlib for orphan recovery, and so introduces some computational overhead, but it can improve sensitivity.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -445,7 +445,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nSet flags to mimic parameters similar to Bowtie2 with --no-discordant and --no-mixed flags",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nSet flags to mimic parameters similar to Bowtie2 with --no-discordant and --no-mixed flags. This increases disallows dovetailing reads, and discards orphans. Note, this does not impose the very strict parameters assumed by RSEM+Bowtie2, like gapless alignments. For that behavior, use the --mimic_strictBT2 flag below.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -456,7 +456,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nSet flags to mimic the very strict parameters used by RSEM+Bowtie2",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nSet flags to mimic the very strict parameters used by RSEM+Bowtie2. This increases --min_score_fraction to 0.8, disallows dovetailing reads, discards orphans, and disallows gaps in alignments.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -467,7 +467,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllos soft-clipping of reads during selective-alignment",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllos soft-clipping of reads during selective-alignment. If this option is provided, then regions at the beginning or end of the read can be withheld from alignment without any effect on the resulting score (i.e. neither adding nor removing from the score). This will drastically reduce the penalty if there are mismatches at the beginning or end of the read due to e.g. low-quality bases or adapters. NOTE: Even with soft-clipping enabled, the read must still achieve a score of at least min_score_fraction * maximum achievable score, where the maximum achievable score is computed based on the full (un-clipped) read length.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -478,7 +478,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllow soft-clipping of reads that overhang the beginning or ends of the transcript",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nAllow soft-clipping of reads that overhang the beginning or ends of the transcript. In this case, the overhaning section of the read will simply be unaligned, and will not contribute or detract from the alignment score. The default policy is to force an end-to-end alignment of the entire read, so that overhanings will result in some deletion of nucleotides from the read.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -489,7 +489,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nPerform selective alignment over the full length of the read, beginning from the (approximate) initial mapping location and using extension alignment",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nPerform selective alignment over the full length of the read, beginning from the (approximate) initial mapping location and using extension alignment. This is in contrast with the default behavior which is to only perform alignment between the MEMs in the optimal chain (and before the first and after the last MEM if applicable). The default strategy forces the MEMs to belong to the alignment, but has the benefit that it can discover indels prior to the first hit shared between the read and reference. Except in very rare circumstances, the default mode should be more accurate.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -500,7 +500,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nInstead of weighting mappings by their alignment score, this flag will discard any mappings with sub-optimal alignment score",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. [selective-alignment mode only] \nInstead of weighting mappings by their alignment score, this flag will discard any mappings with sub-optimal alignment score. The default option of soft-filtering (i.e. weighting mappings by their alignment score) usually yields slightly more accurate abundance estimates but this flag may be desirable if you want more accurate \u0027naive\u0027 equivalence classes, rather than range factorized equivalence classes.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -521,7 +521,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If this option is provided, then the selective-alignment results will be written out in SAM-compatible format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If this option is provided, then the selective-alignment results will be written out in SAM-compatible format. By default, output will be directed to stdout, but an alternative file name can be provided instead.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -532,7 +532,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.mapping_sam.sam`, example: `mappings.sam`. Path to file that should output the selective-alignment results in SAM-compatible format",
|
||||
"help_text": "Type: `file`, default: `$id.$key.mapping_sam.sam`, example: `mappings.sam`. Path to file that should output the selective-alignment results in SAM-compatible format. This option must be provided while using --write_mappings"
|
||||
,
|
||||
"default": "$id.$key.mapping_sam.sam"
|
||||
"default":"$id.$key.mapping_sam.sam"
|
||||
}
|
||||
|
||||
|
||||
@@ -543,7 +543,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This flag only has meaning if mappings are being written (with --write_mappings/-z)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This flag only has meaning if mappings are being written (with --write_mappings/-z). If this flag is provided, then the output SAM file will contain quality strings as well as read sequences. Note that this can greatly increase the size of the output file.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -576,7 +576,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use an alternative strategy (rather than simple interpolation between) the online and uniform abundance estimates to initialize the EM / VBEM algorithm",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use an alternative strategy (rather than simple interpolation between) the online and uniform abundance estimates to initialize the EM / VBEM algorithm.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -587,7 +587,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.aux_dir.aux_dir`, example: `aux_info`. The sub-directory of the quantification directory where auxiliary information e",
|
||||
"help_text": "Type: `file`, default: `$id.$key.aux_dir.aux_dir`, example: `aux_info`. The sub-directory of the quantification directory where auxiliary information e.g. bootstraps, bias parameters, etc. will be written.\n"
|
||||
,
|
||||
"default": "$id.$key.aux_dir.aux_dir"
|
||||
"default":"$id.$key.aux_dir.aux_dir"
|
||||
}
|
||||
|
||||
|
||||
@@ -598,7 +598,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Skip performing the actual transcript quantification (including any Gibbs sampling or bootstrapping)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Skip performing the actual transcript quantification (including any Gibbs sampling or bootstrapping).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -609,7 +609,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Dump the simple equivalence class counts that were computed during mapping or alignment",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Dump the simple equivalence class counts that were computed during mapping or alignment.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -620,7 +620,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Dump conditional probabilities associated with transcripts when equivalence class information is being dumped to file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Dump conditional probabilities associated with transcripts when equivalence class information is being dumped to file. Note, this will dump the factorization that is actually used by salmon\u0027s offline phase for inference. If you are using range-factorized equivalence classes (the default) then the same transcript set may appear multiple times with different associated conditional probabilities.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -641,7 +641,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If this option is selected, a more memory efficient (but slightly slower) representation is used to compute fragment GC content",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If this option is selected, a more memory efficient (but slightly slower) representation is used to compute fragment GC content. Enabling this will reduce memory usage, but can also reduce speed. However, the results themselves will remain the same.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -702,7 +702,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Initialize the offline inference with uniform parameters, rather than seeding with online parameters",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Initialize the offline inference with uniform parameters, rather than seeding with online parameters.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -733,7 +733,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Entirely disables length correction when estimating the abundance of transcripts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Entirely disables length correction when estimating the abundance of transcripts. This option can be used with protocols where one expects that fragments derive from their underlying targets without regard to that target\u0027s length (e.g. QuantSeq)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -744,7 +744,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disables effective length correction when computing the probability that a fragment was generated from a transcript",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disables effective length correction when computing the probability that a fragment was generated from a transcript. If this flag is passed in,the fragment length distribution is not taken into account when computing this probability.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -755,7 +755,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Disables the estimation of an associated fragment length probability for single-end reads or for orphaned mappings in paired-end libraries",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Disables the estimation of an associated fragment length probability for single-end reads or for orphaned mappings in paired-end libraries. The default behavior is to consider the probability of all possible fragment lengths associated with the retained mapping. Enabling this flag (i.e. turning this default behavior off) will simply not attempt to estimate a fragment length probability in such cases.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -766,7 +766,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Don\u0027t consider concordance with the learned fragment length distribution when trying to determine the probability that a fragment has originated from a specified location",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Don\u0027t consider concordance with the learned fragment length distribution when trying to determine the probability that a fragment has originated from a specified location. Normally, Fragments with unlikely lengths will be assigned a smaller relative probability than those with more likely lengths. When this flag is passed in, the observed fragment length has no effect on that fragment\u0027s a priori probability.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -777,7 +777,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If this option is enabled, then no (lower) threshold will be set on how short bias correction can make effective lengths",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If this option is enabled, then no (lower) threshold will be set on how short bias correction can make effective lengths. This can increase the precision of bias correction, but harm robustness. The default correction applies a threshold.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -818,7 +818,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use the traditional EM algorithm for optimization in the batch passes",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use the traditional EM algorithm for optimization in the batch passes.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -829,7 +829,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use the Variational Bayesian EM [default]\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use the Variational Bayesian EM [default]\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -860,7 +860,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This switch will disable drawing transcript fractions from a Gamma distribution during Gibbs sampling",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This switch will disable drawing transcript fractions from a Gamma distribution during Gibbs sampling. In this case the sampler does not account for shot-noise, but only assignment ambiguity\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -881,7 +881,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This switch will learn the parameter distribution from the bootstrapped counts for each sample, but will reproject those parameters onto the original equivalence class counts",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This switch will learn the parameter distribution from the bootstrapped counts for each sample, but will reproject those parameters onto the original equivalence class counts.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -902,7 +902,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Be quiet while doing quantification (don\u0027t write informative output to the console unless something goes wrong)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Be quiet while doing quantification (don\u0027t write informative output to the console unless something goes wrong).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -913,7 +913,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. The prior (either the default or the argument provided via --vb_prior) will be interpreted as a transcript-level prior (i",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. The prior (either the default or the argument provided via --vb_prior) will be interpreted as a transcript-level prior (i.e. each transcript will be given a prior read count of this value)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -924,7 +924,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. The prior (either the default or the argument provided via --vb_prior) will be interpreted as a nucleotide-level prior (i",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. The prior (either the default or the argument provided via --vb_prior) will be interpreted as a nucleotide-level prior (i.e. each nucleotide will be given a prior read count of this value)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -955,7 +955,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Write the transcripts that are linked by orphaned reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Write the transcripts that are linked by orphaned reads.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -966,7 +966,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Write the names of un-mapped reads to the file unmapped_names",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Write the names of un-mapped reads to the file unmapped_names.txt in the auxiliary directory.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -987,7 +987,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Turn off the alignment error model, which takes into account the the observed frequency of different types of mismatches / indels when computing the likelihood of a given alignment",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Turn off the alignment error model, which takes into account the the observed frequency of different types of mismatches / indels when computing the likelihood of a given alignment. Turning this off can speed up alignment-based salmon, but can harm quantification accuracy.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -1008,7 +1008,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Write a \"postSample",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Write a \"postSample.bam\" file in the output directory that will sample the input alignments according to the estimated transcript abundances. If you\u0027re going to perform downstream analysis of the alignments with tools which don\u0027t, themselves, take fragment assignment ambiguity into account, you should use this output.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -1019,7 +1019,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. In addition to sampling the aligned reads, also write the un-aligned reads to \"postSample",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. In addition to sampling the aligned reads, also write the un-aligned reads to \"postSample.bam\".\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -1030,7 +1030,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This flag will expect the input transcript fasta to be in GENCODE format, and will split the transcript name at the first \u0027|\u0027 character",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This flag will expect the input transcript fasta to be in GENCODE format, and will split the transcript name at the first \u0027|\u0027 character. These reduced names will be used in the output and when looking for these transcripts in a gene to transcript GTF.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -173,9 +173,9 @@ build_info:
|
||||
output: "target/nextflow/samtools/samtools_flagstat"
|
||||
executable: "target/nextflow/samtools/samtools_flagstat/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3028,9 +3028,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/samtools/samtools_flagstat",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.flagstat`, example: `output.flagstat`. File containing samtools stats output",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.flagstat`, example: `output.flagstat`. File containing samtools stats output.\n"
|
||||
,
|
||||
"default": "$id.$key.output.flagstat"
|
||||
"default":"$id.$key.output.flagstat"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -183,9 +183,9 @@ build_info:
|
||||
output: "target/nextflow/samtools/samtools_idxstats"
|
||||
executable: "target/nextflow/samtools/samtools_idxstats/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3040,9 +3040,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/samtools/samtools_idxstats",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.idxstats`, example: `output.idxstats`. File containing samtools stats output in tab-delimited format",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.idxstats`, example: `output.idxstats`. File containing samtools stats output in tab-delimited format.\n"
|
||||
,
|
||||
"default": "$id.$key.output.idxstats"
|
||||
"default":"$id.$key.output.idxstats"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -189,9 +189,9 @@ build_info:
|
||||
output: "target/nextflow/samtools/samtools_index"
|
||||
executable: "target/nextflow/samtools/samtools_index/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3053,9 +3053,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/samtools/samtools_index",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.bai`, example: `out.bam.bai`. Output file name",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.bai`, example: `out.bam.bai`. Output file name"
|
||||
,
|
||||
"default": "$id.$key.output.bai"
|
||||
"default":"$id.$key.output.bai"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Generate BAM index",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Generate BAM index"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Create a CSI index for BAM files instead of the traditional BAI \nindex",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Create a CSI index for BAM files instead of the traditional BAI \nindex. This will be required for genomes with larger chromosome \nsizes.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -332,9 +332,9 @@ build_info:
|
||||
output: "target/nextflow/samtools/samtools_sort"
|
||||
executable: "target/nextflow/samtools/samtools_sort/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3225,9 +3225,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/samtools/samtools_sort",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.bam`, example: `out.bam`. Write final output to file",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.bam`, example: `out.bam`. Write final output to file.\n"
|
||||
,
|
||||
"default": "$id.$key.output.bam"
|
||||
"default":"$id.$key.output.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Automatically index the output files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Automatically index the output files.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -102,7 +102,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not add a PG line",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not add a PG line.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Sort by template-coordinate",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Sort by template-coordinate.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
"description": "Type: `integer`, default: `0`. Set compression level, from 0 (uncompressed) to 9 (best)",
|
||||
"help_text": "Type: `integer`, default: `0`. Set compression level, from 0 (uncompressed) to 9 (best).\n"
|
||||
,
|
||||
"default": "0"
|
||||
"default":0
|
||||
}
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output uncompressed data (equivalent to --compression 0)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output uncompressed data (equivalent to --compression 0).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use minimiser for clustering unaligned/unplaced reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use minimiser for clustering unaligned/unplaced reads.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -177,7 +177,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Do not use reverse strand (only compatible with --minimiser)\n",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Do not use reverse strand (only compatible with --minimiser)\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -218,7 +218,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Squash homopolymers when computing minimiser",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Squash homopolymers when computing minimiser.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -229,7 +229,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Sort by read name (natural): cannot be used with samtools index",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Sort by read name (natural): cannot be used with samtools index.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -240,7 +240,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Sort by read name (ASCII): cannot be used with samtools index",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Sort by read name (ASCII): cannot be used with samtools index.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -401,9 +401,9 @@ build_info:
|
||||
output: "target/nextflow/samtools/samtools_stats"
|
||||
executable: "target/nextflow/samtools/samtools_stats/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3295,9 +3295,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/samtools/samtools_stats",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Exclude from statistics reads marked as duplicates",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Exclude from statistics reads marked as duplicates.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use a customized index file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use a customized index file.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -202,7 +202,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Suppress outputting IS rows where there are no insertions",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Suppress outputting IS rows where there are no insertions.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -213,7 +213,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Remove overlaps of paired-end reads from coverage and base count computations",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Remove overlaps of paired-end reads from coverage and base count computations.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -264,7 +264,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.txt`, example: `out.txt`. Output file",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.txt`, example: `out.txt`. Output file.\n"
|
||||
,
|
||||
"default": "$id.$key.output.txt"
|
||||
"default":"$id.$key.output.txt"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -594,9 +594,9 @@ build_info:
|
||||
output: "target/nextflow/sortmerna"
|
||||
executable: "target/nextflow/sortmerna/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3460,9 +3460,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/sortmerna",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Reads are paired-end",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Reads are paired-end. If a single reads file is provided, use this option \nto indicate the file contains interleaved paired reads when neither\n\u0027paired_in\u0027 | \u0027paired_out\u0027 | \u0027out2\u0027 | \u0027sout\u0027 are specified.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.log.log`, example: `$id.sortmerna.log`. Sortmerna log file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.log.log`, example: `$id.sortmerna.log`. Sortmerna log file."
|
||||
,
|
||||
"default": "$id.$key.log.log"
|
||||
"default":"$id.$key.log.log"
|
||||
}
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output.output`. Directory and file prefix for aligned output",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output.output`. Directory and file prefix for aligned output. The appropriate extension: \n(fasta|fastq|blast|sam|etc) is automatically added.\nIf \u0027dir\u0027 is not specified, the output is created in the WORKDIR/out/.\nIf \u0027pfx\u0027 is not specified, the prefix \u0027aligned\u0027 is used.\n"
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.other.other`. Create Non-aligned reads output file with this path/prefix",
|
||||
"help_text": "Type: `file`, default: `$id.$key.other.other`. Create Non-aligned reads output file with this path/prefix. Must be used with fastx."
|
||||
,
|
||||
"default": "$id.$key.other.other"
|
||||
"default":"$id.$key.other.other"
|
||||
}
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output aligned reads into FASTA/FASTQ file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output aligned reads into FASTA/FASTQ file"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output SAM alignment for aligned reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output SAM alignment for aligned reads."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add SQ tags to the SAM file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add SQ tags to the SAM file"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -209,7 +209,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. output null alignment strings for non-aligned reads to SAM and/or BLAST tabular files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. output null alignment strings for non-aligned reads to SAM and/or BLAST tabular files."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -220,7 +220,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. In the case where a pair of reads is aligned with a score above the threshold, the output of the reads is controlled\nby the following options:\n* --paired_in and --paired_out are both false: Only one read per pair is output to the aligned fasta file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. In the case where a pair of reads is aligned with a score above the threshold, the output of the reads is controlled\nby the following options:\n* --paired_in and --paired_out are both false: Only one read per pair is output to the aligned fasta file.\n* --paired_in is true and --paired_out is false: Both reads of the pair are output to the aligned fasta file.\n* --paired_in is false and --paired_out is true: Both reads are output the the other fasta file (if it is specified).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -231,7 +231,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. See description of --paired_in",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. See description of --paired_in."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -242,7 +242,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output paired reads into separate files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output paired reads into separate files. Must be used with \u0027--fastx\u0027. If a single reads file is provided, this options\nimplies interleaved paired reads. When used with \u0027sout\u0027, four (4) output files for aligned reads will be generated:\n\u0027aligned-paired-fwd, aligned-paired-rev, aligned-singleton-fwd, aligned-singleton-rev\u0027. If \u0027other\u0027 option is also used,\neight (8) output files will be generated.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -253,7 +253,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Separate paired and singleton aligned reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Separate paired and singleton aligned reads. Must be used with \u0027--fastx\u0027. If a single reads file is provided,\nthis options implies interleaved paired reads. Cannot be used with \u0027--paired_in\u0027 or \u0027--paired_out\u0027.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -346,7 +346,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Search only the forward strand",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Search only the forward strand."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -357,7 +357,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Search only the reverse-complementary strand",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Search only the reverse-complementary strand."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -388,7 +388,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Verbose output",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Verbose output."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -429,7 +429,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. FASTA/FASTQ file for reads matching database \u003c %id off (set using --id) and \u003c %cov (set using --coverage)\n(alignment must still pass the E-value threshold)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. FASTA/FASTQ file for reads matching database \u003c %id off (set using --id) and \u003c %cov (set using --coverage)\n(alignment must still pass the E-value threshold).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -440,7 +440,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output OTU map (input to QIIME\u0027s make_otu_table",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output OTU map (input to QIIME\u0027s make_otu_table.py).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -491,7 +491,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Search for all 0-error and 1-error seed off matches in the index rather than stopping after finding a 0-error match\n(\u003c1% gain in sensitivity with up four-fold decrease in speed)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Search for all 0-error and 1-error seed off matches in the index rather than stopping after finding a 0-error match\n(\u003c1% gain in sensitivity with up four-fold decrease in speed).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -2663,9 +2663,9 @@ build_info:
|
||||
output: "target/nextflow/star/star_align_reads"
|
||||
executable: "target/nextflow/star/star_align_reads/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -5943,9 +5943,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/star/star_align_reads",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.aligned_reads.bam`, example: `aligned_reads.bam`. The output file containing the aligned reads",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.aligned_reads.bam`, example: `aligned_reads.bam`. The output file containing the aligned reads."
|
||||
,
|
||||
"default": "$id.$key.aligned_reads.bam"
|
||||
"default":"$id.$key.aligned_reads.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.reads_per_gene.tsv`, example: `reads_per_gene.tsv`. The output file containing the number of reads per gene",
|
||||
"help_text": "Type: `file`, default: `$id.$key.reads_per_gene.tsv`, example: `reads_per_gene.tsv`. The output file containing the number of reads per gene."
|
||||
,
|
||||
"default": "$id.$key.reads_per_gene.tsv"
|
||||
"default":"$id.$key.reads_per_gene.tsv"
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unmapped.fastq`, example: `unmapped.fastq`. The output file containing the unmapped reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unmapped.fastq`, example: `unmapped.fastq`. The output file containing the unmapped reads."
|
||||
,
|
||||
"default": "$id.$key.unmapped.fastq"
|
||||
"default":"$id.$key.unmapped.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unmapped_r2.fastq`, example: `unmapped_r2.fastq`. The output file containing the unmapped R2 reads",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unmapped_r2.fastq`, example: `unmapped_r2.fastq`. The output file containing the unmapped R2 reads."
|
||||
,
|
||||
"default": "$id.$key.unmapped_r2.fastq"
|
||||
"default":"$id.$key.unmapped_r2.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -94,7 +94,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.chimeric_junctions.tsv`, example: `chimeric_junctions.tsv`. The output file containing the chimeric junctions",
|
||||
"help_text": "Type: `file`, default: `$id.$key.chimeric_junctions.tsv`, example: `chimeric_junctions.tsv`. The output file containing the chimeric junctions."
|
||||
,
|
||||
"default": "$id.$key.chimeric_junctions.tsv"
|
||||
"default":"$id.$key.chimeric_junctions.tsv"
|
||||
}
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.log.txt`, example: `log.txt`. The output file containing the log of the alignment process",
|
||||
"help_text": "Type: `file`, default: `$id.$key.log.txt`, example: `log.txt`. The output file containing the log of the alignment process."
|
||||
,
|
||||
"default": "$id.$key.log.txt"
|
||||
"default":"$id.$key.log.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.splice_junctions.tsv`, example: `splice_junctions.tsv`. The output file containing the splice junctions",
|
||||
"help_text": "Type: `file`, default: `$id.$key.splice_junctions.tsv`, example: `splice_junctions.tsv`. The output file containing the splice junctions."
|
||||
,
|
||||
"default": "$id.$key.splice_junctions.tsv"
|
||||
"default":"$id.$key.splice_junctions.tsv"
|
||||
}
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.reads_aligned_to_transcriptome.bam`, example: `transcriptome_aligned.bam`. The output file containing the alignments to transcriptome in BAM formats",
|
||||
"help_text": "Type: `file`, default: `$id.$key.reads_aligned_to_transcriptome.bam`, example: `transcriptome_aligned.bam`. The output file containing the alignments to transcriptome in BAM formats. This file is generated when --quantMode is set to TranscriptomeSAM."
|
||||
,
|
||||
"default": "$id.$key.reads_aligned_to_transcriptome.bam"
|
||||
"default":"$id.$key.reads_aligned_to_transcriptome.bam"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -333,9 +333,9 @@ build_info:
|
||||
output: "target/nextflow/star/star_genome_generate"
|
||||
executable: "target/nextflow/star/star_genome_generate/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3195,9 +3195,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/star/star_genome_generate",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -190,7 +190,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.index.index`. STAR index directory",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.index.index`. STAR index directory."
|
||||
,
|
||||
"default": "$id.$key.index.index"
|
||||
"default":"$id.$key.index.index"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -770,9 +770,9 @@ build_info:
|
||||
output: "target/nextflow/trimgalore"
|
||||
executable: "target/nextflow/trimgalore/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3560,9 +3560,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/trimgalore",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Instructs Cutadapt to use ASCII+33 quality scores as Phred scores (Sanger/Illumina 1",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Instructs Cutadapt to use ASCII+33 quality scores as Phred scores (Sanger/Illumina 1.9+ encoding) for quality trimming."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Instructs Cutadapt to use ASCII+64 quality scores as Phred scores (Illumina 1",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Instructs Cutadapt to use ASCII+64 quality scores as Phred scores (Illumina 1.5 encoding) for quality trimming."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Run FastQC in the default mode on the FastQ file once trimming is complete",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Run FastQC in the default mode on the FastQ file once trimming is complete."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -143,7 +143,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 13bp of the Illumina universal adapter \u0027AGATCGGAAGAGC\u0027 instead of the default auto-detection of adapter sequence",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 13bp of the Illumina universal adapter \u0027AGATCGGAAGAGC\u0027 instead of the default auto-detection of adapter sequence."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 13bp of the Illumina stranded mRNA or Total RNA adapter \u0027ACTGTCTCTTATA\u0027 instead of the default auto-detection of adapter sequence",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 13bp of the Illumina stranded mRNA or Total RNA adapter \u0027ACTGTCTCTTATA\u0027 instead of the default auto-detection of adapter sequence."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 12bp of the Nextera adapter \u0027CTGTCTCTTATA\u0027 instead of the default auto-detection of adapter sequence",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 12bp of the Nextera adapter \u0027CTGTCTCTTATA\u0027 instead of the default auto-detection of adapter sequence."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -176,7 +176,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 12bp of the Illumina Small RNA 3\u0027 Adapter \u0027TGGAATTCTCGG\u0027 instead of the default auto-detection of adapter sequence",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Adapter sequence to be trimmed is the first 12bp of the Illumina Small RNA 3\u0027 Adapter \u0027TGGAATTCTCGG\u0027 instead of the default auto-detection of adapter sequence. Selecting to trim smallRNA adapters will also lower the --length value to 18bp. If the smallRNA libraries are paired-end then a automatically (GATCGTCGGACT) unless -a 2 had been defined explicitly."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -227,7 +227,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Compress the output file with GZIP",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Compress the output file with GZIP. If the input files are GZIP-compressed the output files will automatically be GZIP compressed as well. As of v0.2.8 the compression will take place on the fly."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -238,7 +238,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Output files won\u0027t be compressed with GZIP",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Output files won\u0027t be compressed with GZIP. This option overrides --gzip."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -269,7 +269,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Removes Ns from either side of the read",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Removes Ns from either side of the read. This option does currently not work in RRBS mode."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -280,7 +280,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If specified no report file will be generated",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If specified no report file will be generated."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -291,7 +291,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If specified any output to STDOUT or STDERR will be suppressed",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If specified any output to STDOUT or STDERR will be suppressed."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -392,7 +392,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. In this mode, reads are trimmed in a specific way that is currently used for the Mouse Epigenetic Clock",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. In this mode, reads are trimmed in a specific way that is currently used for the Mouse Epigenetic Clock."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -403,7 +403,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This is a new, still experimental, trimming mode to identify and remove poly-A tails from sequences",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This is a new, still experimental, trimming mode to identify and remove poly-A tails from sequences. When --polyA is selected, Trim Galore attempts to identify from the first supplied sample whether sequences contain more often a stretch of either \u0027AAAAAAAAAA\u0027 or \u0027TTTTTTTTTT\u0027. This determines if Read 1 of a paired-end end file, or single-end files, are trimmed for PolyA or PolyT. In case of paired-end sequencing, Read2 is trimmed for the complementary base from the start of the reads. The auto-detection uses a default of A{20} for Read1 (3\u0027-end trimming) and T{150} for Read2 (5\u0027-end trimming). These values may be changed manually using the options -a and -a2. In addition to trimming the sequences, white spaces are replaced with _ and it records in the read ID how many bases were trimmed so it can later be used to identify PolyA trimmed sequences. This is currently done by writing tags to both the start (\"32:A:\") and end (\"_PolyA:32\") of the reads. The poly-A trimming mode expects that sequences were both adapter and quality before looking for Poly-A tails, and it is the user\u0027s responsibility to carry out an initial round of trimming."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -414,7 +414,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This is a special mode of operation for paired-end data, such as required for the IMPLICON method, where a UMI sequence is getting transferred from the start of Read 2 to the readID of both reads",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This is a special mode of operation for paired-end data, such as required for the IMPLICON method, where a UMI sequence is getting transferred from the start of Read 2 to the readID of both reads. Following this, Trim Galore will exit. In it\u0027s current implementation, the UMI carrying reads come in the following format\n Read 1 5\u0027 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 3\u0027\n Read 2 3\u0027 UUUUUUUUFFFFFFFFFFFFFFFFFFFFFFFFFFFF 5\u0027\nWhere UUUUUUUU is a random 8-mer unique molecular identifier (UMI) and FFFFFFF... is the actual fragment to be sequenced. The UMI of Read 2 (R2) is written into the read ID of both reads and removed from the actual sequence.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -435,7 +435,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Specifies that the input file was an MspI digested RRBS sample (recognition site is CCGG)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Specifies that the input file was an MspI digested RRBS sample (recognition site is CCGG). Single-end or Read 1 sequences (paired-end) which were adapter-trimmed will have a further 2 bp removed from their 3\u0027 end. Sequences which were merely trimmed because of poor quality will not be shortened further. Read 2 of paired-end libraries will in addition have the first 2 bp removed from the 5\u0027 end (by setting \u0027--clip_r2 2\u0027). This is to avoid using artificial methylation calls from the filled-in cytosine positions close to the 3\u0027 MspI site in sequenced fragments. This option is not recommended for users of the Tecan Ovation RRBS Methyl-Seq with TrueMethyl oxBS 1-16 kit (see below)."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -446,7 +446,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Selecting this option for non-directional RRBS libraries will screen quality-trimmed sequences for \u0027CAA\u0027 or \u0027CGA\u0027 at the start of the read and, if found, removes the first two basepairs",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Selecting this option for non-directional RRBS libraries will screen quality-trimmed sequences for \u0027CAA\u0027 or \u0027CGA\u0027 at the start of the read and, if found, removes the first two basepairs. Like with the option \u0027--rrbs\u0027 this avoids using cytosine positions that were filled-in during the end-repair step. \u0027--non_directional\u0027 requires \u0027--rrbs\u0027 to be specified as well. Note that this option does not set \u0027--clip_r2 2\u0027 in paired-end mode."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -457,7 +457,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Keep the quality trimmed intermediate file",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Keep the quality trimmed intermediate file."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -478,7 +478,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. This option performs length trimming of quality/adapter/RRBS trimmed reads for paired-end files",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. This option performs length trimming of quality/adapter/RRBS trimmed reads for paired-end files. To pass the validation test, both sequences of a sequence pair are required to have a certain minimum length which is governed by the option --length (see above). If only one read passes this length threshold the other read can be rescued (see option --retain_unpaired). Using this option lets you discard too short read pairs without disturbing the sequence-by-sequence order of FastQ files which is required by many aligners. Trim Galore expects paired-end files to be supplied in a pairwise fashion, e.g. file1_1.fq file1_2.fq SRR2_1.fq.gz SRR2_2.fq.gz ... ."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -489,7 +489,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. If only one of the two paired-end reads became too short, the longer read will be written to either \u0027",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. If only one of the two paired-end reads became too short, the longer read will be written to either \u0027.unpaired_1.fq\u0027 or \u0027.unpaired_2.fq\u0027 output files. The length cutoff for unpaired single-end reads is governed by the parameters -r1/--length_1 and -r2/--length_2."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -530,7 +530,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output_dir.output_dir`. If specified all output will be written to this directory instead of the current directory",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output_dir.output_dir`. If specified all output will be written to this directory instead of the current directory."
|
||||
,
|
||||
"default": "$id.$key.output_dir.output_dir"
|
||||
"default":"$id.$key.output_dir.output_dir"
|
||||
}
|
||||
|
||||
|
||||
@@ -541,7 +541,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_r1.fastq`, example: `read_1.fastq`. Output file for read 1",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_r1.fastq`, example: `read_1.fastq`. Output file for read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_r1.fastq"
|
||||
"default":"$id.$key.trimmed_r1.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -552,7 +552,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_r2.fastq`, example: `read_2.fastq`. Output file for read 2",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_r2.fastq`, example: `read_2.fastq`. Output file for read 2. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_r2.fastq"
|
||||
"default":"$id.$key.trimmed_r2.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -563,7 +563,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimming_report_r1.txt`, example: `read_1.trimming_report.txt`. Trimming report for read 1",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimming_report_r1.txt`, example: `read_1.trimming_report.txt`. Trimming report for read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimming_report_r1.txt"
|
||||
"default":"$id.$key.trimming_report_r1.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -574,7 +574,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimming_report_r2.txt`, example: `read_2.trimming_report.txt`. Trimming report for read 1",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimming_report_r2.txt`, example: `read_2.trimming_report.txt`. Trimming report for read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimming_report_r2.txt"
|
||||
"default":"$id.$key.trimming_report_r2.txt"
|
||||
}
|
||||
|
||||
|
||||
@@ -585,7 +585,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_fastqc_html_1.html`, example: `read_1.fastqc.html`. FastQC report for trimmed (single-end) reads (or read 1 for paired-end)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_fastqc_html_1.html`, example: `read_1.fastqc.html`. FastQC report for trimmed (single-end) reads (or read 1 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_fastqc_html_1.html"
|
||||
"default":"$id.$key.trimmed_fastqc_html_1.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -596,7 +596,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_fastqc_html_2.html`, example: `read_2.fastqc.html`. FastQC report for trimmed reads (read2 for paired-end)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_fastqc_html_2.html`, example: `read_2.fastqc.html`. FastQC report for trimmed reads (read2 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_fastqc_html_2.html"
|
||||
"default":"$id.$key.trimmed_fastqc_html_2.html"
|
||||
}
|
||||
|
||||
|
||||
@@ -607,7 +607,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_fastqc_zip_1.zip`, example: `read_1.fastqc.zip`. FastQC results for trimmed (single-end) reads (or read 1 for paired-end)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_fastqc_zip_1.zip`, example: `read_1.fastqc.zip`. FastQC results for trimmed (single-end) reads (or read 1 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_fastqc_zip_1.zip"
|
||||
"default":"$id.$key.trimmed_fastqc_zip_1.zip"
|
||||
}
|
||||
|
||||
|
||||
@@ -618,7 +618,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.trimmed_fastqc_zip_2.zip`, example: `read_2.fastqc.zip`. FastQC results for trimmed reads (read2 for paired-end)",
|
||||
"help_text": "Type: `file`, default: `$id.$key.trimmed_fastqc_zip_2.zip`, example: `read_2.fastqc.zip`. FastQC results for trimmed reads (read2 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.trimmed_fastqc_zip_2.zip"
|
||||
"default":"$id.$key.trimmed_fastqc_zip_2.zip"
|
||||
}
|
||||
|
||||
|
||||
@@ -629,7 +629,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unpaired_r1.fastq`, example: `unpaired_read_1.fastq`. Output file for unpired read 1",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unpaired_r1.fastq`, example: `unpaired_read_1.fastq`. Output file for unpired read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.unpaired_r1.fastq"
|
||||
"default":"$id.$key.unpaired_r1.fastq"
|
||||
}
|
||||
|
||||
|
||||
@@ -640,7 +640,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.unpaired_r2.fastq`, example: `unpaired_read_2.fastq`. Output file for unpaired read 2",
|
||||
"help_text": "Type: `file`, default: `$id.$key.unpaired_r2.fastq`, example: `unpaired_read_2.fastq`. Output file for unpaired read 2. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists."
|
||||
,
|
||||
"default": "$id.$key.unpaired_r2.fastq"
|
||||
"default":"$id.$key.unpaired_r2.fastq"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -611,9 +611,9 @@ build_info:
|
||||
output: "target/nextflow/umi_tools/umi_tools_dedup"
|
||||
executable: "target/nextflow/umi_tools/umi_tools_dedup/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3487,9 +3487,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/umi_tools/umi_tools_dedup",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default, inputs are assumed to be in BAM format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default, inputs are assumed to be in BAM format. Use this options to specify the use of SAM\nformat for input.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.output`. Deduplicated BAM file",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.output`. Deduplicated BAM file."
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default, outputa are written in BAM format",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default, outputa are written in BAM format. Use this options to specify the use of SAM format\nfor output.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. BAM is paired end - output both read pairs",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. BAM is paired end - output both read pairs. This will also force the use of the template length\nto determine reads with the same mapping coordinates.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -228,7 +228,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Causes two reads that start in the same position on the same strand and having the same UMI\nto be considered unique if one is spliced and the other is not",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Causes two reads that start in the same position on the same strand and having the same UMI\nto be considered unique if one is spliced and the other is not. (Uses the \u0027N\u0027 cigar operation\nto test for splicing).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -259,7 +259,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Use the read length as a criteria when deduping, for e",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Use the read length as a criteria when deduping, for e.g. sRNA-Seq."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -280,7 +280,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Reads will be grouped together if they have the same gene",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Reads will be grouped together if they have the same gene. This is useful if your library prep\ngenerates PCR duplicates with non identical alignment positions such as CEL-Seq. Note this option\nis hardcoded to be on with the count command. I.e. counting is always performed per-gene. Must be\ncombined with either --gene_tag or --per_contig option.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -321,7 +321,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Deduplicate per contig (field 3 in BAM; RNAME)",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Deduplicate per contig (field 3 in BAM; RNAME). All reads with the sam contig will be considered to\nhave the same alignment position. This is useful if you have aligned to a reference transcriptome\nwith one transcript per gene. If you have aligned to a transcriptome with more than one transcript\nper gene, you can supply a map between transcripts and gene using the --gene_transcript_map option.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -342,7 +342,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Reads will only be grouped together if they have the same cell barcode",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Reads will only be grouped together if they have the same cell barcode. Can be combined with\n--per_gene.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -407,7 +407,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ignore the UMI and group reads using mapping coordinates only",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ignore the UMI and group reads using mapping coordinates only."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -448,7 +448,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default, output is sorted",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default, output is sorted. This involves the use of a temporary unsorted file (saved in\n--temp_dir). Use this option to turn off sorting.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Forces dedup to parse an entire contig before yielding any reads for deduplication",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Forces dedup to parse an entire contig before yielding any reads for deduplication. This is the\nonly way to absolutely guarantee that all reads with the same start position are grouped together\nfor deduplication since dedup uses the start position of the read, not the alignment coordinate on\nwhich the reads are sorted. However, by default, dedup reads for another 1000bp before outputting\nread groups which will avoid any reads being missed with short read sequencing (\u003c1000bp).\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -490,7 +490,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Send logging information to stderr",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Send logging information to stderr."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -434,9 +434,9 @@ build_info:
|
||||
output: "target/nextflow/umi_tools/umi_tools_extract"
|
||||
executable: "target/nextflow/umi_tools/umi_tools_extract/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3299,9 +3299,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/umi_tools/umi_tools_extract",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -70,7 +70,7 @@
|
||||
"description": "Type: `file`, required, default: `$id.$key.output.output`. Output file for read 1",
|
||||
"help_text": "Type: `file`, required, default: `$id.$key.output.output`. Output file for read 1."
|
||||
,
|
||||
"default": "$id.$key.output.output"
|
||||
"default":"$id.$key.output.output"
|
||||
}
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.read2_out.read2_out`. Output file for read 2",
|
||||
"help_text": "Type: `file`, default: `$id.$key.read2_out.read2_out`. Output file for read 2."
|
||||
,
|
||||
"default": "$id.$key.read2_out.read2_out"
|
||||
"default":"$id.$key.read2_out.read2_out"
|
||||
}
|
||||
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Error correct cell barcodes to the whitelist",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Error correct cell barcodes to the whitelist."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -207,7 +207,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Allow read 2 infile to contain reads not in read 1 infile",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Allow read 2 infile to contain reads not in read 1 infile. This enables support for upstream protocols\nwhere read one contains cell barcodes, and the read pairs have been filtered and corrected without regard\nto the read2.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -218,7 +218,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. By default the barcode is assumed to be on the 5\u0027 end of the read, but use this option to sepecify that it is\non the 3\u0027 end instead",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. By default the barcode is assumed to be on the 5\u0027 end of the read, but use this option to sepecify that it is\non the 3\u0027 end instead. This option only works with --extract_method=string since 3\u0027 encoding can be specified\nexplicitly with a regex, e.g `.*(?P\u003cumi_1\u003e.{5})$`.\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -229,7 +229,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Ignore \"/1\" and \"/2\" read name suffixes",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Ignore \"/1\" and \"/2\" read name suffixes. Note that this options is required if the suffixes are not whitespace\nseparated from the rest of the read name.\narguments:\n"
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -272,7 +272,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.log.log`. File with logging information",
|
||||
"help_text": "Type: `file`, default: `$id.$key.log.log`. File with logging information."
|
||||
,
|
||||
"default": "$id.$key.log.log"
|
||||
"default":"$id.$key.log.log"
|
||||
}
|
||||
|
||||
|
||||
@@ -283,7 +283,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Send logging information to stderr",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Send logging information to stderr."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -304,7 +304,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.error.error`. File with error information",
|
||||
"help_text": "Type: `file`, default: `$id.$key.error.error`. File with error information."
|
||||
,
|
||||
"default": "$id.$key.error.error"
|
||||
"default":"$id.$key.error.error"
|
||||
}
|
||||
|
||||
|
||||
@@ -335,7 +335,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.timeit.timeit`. Store timing information in file",
|
||||
"help_text": "Type: `file`, default: `$id.$key.timeit.timeit`. Store timing information in file."
|
||||
,
|
||||
"default": "$id.$key.timeit.timeit"
|
||||
"default":"$id.$key.timeit.timeit"
|
||||
}
|
||||
|
||||
|
||||
@@ -346,7 +346,7 @@
|
||||
"description": "Type: `string`, default: `all`. Name in timing file for this class of jobs",
|
||||
"help_text": "Type: `string`, default: `all`. Name in timing file for this class of jobs."
|
||||
,
|
||||
"default": "all"
|
||||
"default":"all"
|
||||
}
|
||||
|
||||
|
||||
@@ -357,7 +357,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add header for timing information",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add header for timing information."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -256,9 +256,9 @@ build_info:
|
||||
output: "target/nextflow/umi_tools/umi_tools_prepareforrsem"
|
||||
executable: "target/nextflow/umi_tools/umi_tools_prepareforrsem/main.nf"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "a13b57d04a3f3741eedd1af10fd96a9bee126f55"
|
||||
git_remote: "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-26-ga13b57d"
|
||||
git_commit: "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b"
|
||||
git_remote: "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox"
|
||||
git_tag: "v0.2.0-27-g952ff08"
|
||||
package_config:
|
||||
name: "biobox"
|
||||
version: "main"
|
||||
|
||||
@@ -3121,9 +3121,9 @@ meta = [
|
||||
"engine" : "docker|native",
|
||||
"output" : "target/nextflow/umi_tools/umi_tools_prepareforrsem",
|
||||
"viash_version" : "0.9.0",
|
||||
"git_commit" : "a13b57d04a3f3741eedd1af10fd96a9bee126f55",
|
||||
"git_remote" : "https://x-access-token:ghs_xpDMoQpz4lF1RaGsMH4IlMbO48cLeW1cIYSF@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-26-ga13b57d"
|
||||
"git_commit" : "952ff0843093b538cbfd6fefdecf2e7a0bc9e70b",
|
||||
"git_remote" : "https://x-access-token:ghs_EwAUAMYJ0K4VBHlAEMs4ZP2OyQYqJM0PSfEO@github.com/viash-hub/biobox",
|
||||
"git_tag" : "v0.2.0-27-g952ff08"
|
||||
},
|
||||
"package_config" : {
|
||||
"name" : "biobox",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.output.bam`, example: `$id.transcriptome_sorted.bam`. ",
|
||||
"help_text": "Type: `file`, default: `$id.$key.output.bam`, example: `$id.transcriptome_sorted.bam`. "
|
||||
,
|
||||
"default": "$id.$key.output.bam"
|
||||
"default":"$id.$key.output.bam"
|
||||
}
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.log.log`. File with logging information [default = stdout]",
|
||||
"help_text": "Type: `file`, default: `$id.$key.log.log`. File with logging information [default = stdout]."
|
||||
,
|
||||
"default": "$id.$key.log.log"
|
||||
"default":"$id.$key.log.log"
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
"description": "Type: `file`, default: `$id.$key.error.error`. File with error information [default = stderr]",
|
||||
"help_text": "Type: `file`, default: `$id.$key.error.error`. File with error information [default = stderr]."
|
||||
,
|
||||
"default": "$id.$key.error.error"
|
||||
"default":"$id.$key.error.error"
|
||||
}
|
||||
|
||||
|
||||
@@ -73,7 +73,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Send logging information to stderr [default = False]",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Send logging information to stderr [default = False]."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Input and output SAM rather than BAM",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Input and output SAM rather than BAM."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
"description": "Type: `boolean_true`, default: `false`. Add header for timing information [none]",
|
||||
"help_text": "Type: `boolean_true`, default: `false`. Add header for timing information [none]."
|
||||
,
|
||||
"default": "False"
|
||||
"default":false
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -183,8 +183,8 @@ build_info:
|
||||
output: "target/executable/bedtools_genomecov"
|
||||
executable: "target/executable/bedtools_genomecov/bedtools_genomecov"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "3ee9ba76ca2112681c41468800aab2fa38cdf453"
|
||||
git_remote: "https://x-access-token:ghs_voB56eF2OpLwoHCFv0Y7b6hOUsN5Mp3c03Em@github.com/viash-hub/rnaseq"
|
||||
git_commit: "0b5aea9962d5e17eff2714df166b5f976f49a92e"
|
||||
git_remote: "https://x-access-token:ghs_K1l4tLngEkomUqIQmvtQnd1V942PTZ1leHqC@github.com/viash-hub/rnaseq"
|
||||
package_config:
|
||||
name: "rnaseq"
|
||||
version: "add-labels"
|
||||
|
||||
@@ -481,9 +481,9 @@ mv bedtools.static /usr/local/bin/bedtools && \
|
||||
chmod a+x /usr/local/bin/bedtools
|
||||
|
||||
LABEL org.opencontainers.image.description="Companion container for running component bedtools_genomecov"
|
||||
LABEL org.opencontainers.image.created="2024-12-03T05:47:41Z"
|
||||
LABEL org.opencontainers.image.source="https://x-access-token/ghs_voB56eF2OpLwoHCFv0Y7b6hOUsN5Mp3c03Em@github.com/viash-hub/rnaseq"
|
||||
LABEL org.opencontainers.image.revision="3ee9ba76ca2112681c41468800aab2fa38cdf453"
|
||||
LABEL org.opencontainers.image.created="2024-12-03T19:47:18Z"
|
||||
LABEL org.opencontainers.image.source="https://x-access-token/ghs_K1l4tLngEkomUqIQmvtQnd1V942PTZ1leHqC@github.com/viash-hub/rnaseq"
|
||||
LABEL org.opencontainers.image.revision="0b5aea9962d5e17eff2714df166b5f976f49a92e"
|
||||
LABEL org.opencontainers.image.version="add-labels"
|
||||
|
||||
VIASHDOCKER
|
||||
|
||||
@@ -187,8 +187,8 @@ build_info:
|
||||
output: "target/executable/cat_additional_fasta"
|
||||
executable: "target/executable/cat_additional_fasta/cat_additional_fasta"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "3ee9ba76ca2112681c41468800aab2fa38cdf453"
|
||||
git_remote: "https://x-access-token:ghs_voB56eF2OpLwoHCFv0Y7b6hOUsN5Mp3c03Em@github.com/viash-hub/rnaseq"
|
||||
git_commit: "0b5aea9962d5e17eff2714df166b5f976f49a92e"
|
||||
git_remote: "https://x-access-token:ghs_K1l4tLngEkomUqIQmvtQnd1V942PTZ1leHqC@github.com/viash-hub/rnaseq"
|
||||
package_config:
|
||||
name: "rnaseq"
|
||||
version: "add-labels"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user