Skip to content

Commit b9ea491

Browse files
committed
[automated] Update json files
1 parent c5f5bef commit b9ea491

File tree

2 files changed

+239
-88
lines changed

2 files changed

+239
-88
lines changed

public/components.json

Lines changed: 149 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32632,6 +32632,10 @@
3263232632
"name": "epitopeprediction",
3263332633
"version": "3.1.0"
3263432634
},
32635+
{
32636+
"name": "genomeqc",
32637+
"version": "dev"
32638+
},
3263532639
{
3263632640
"name": "magmap",
3263732641
"version": "1.0.0"
@@ -34919,6 +34923,10 @@
3491934923
]
3492034924
},
3492134925
"pipelines": [
34926+
{
34927+
"name": "genomeqc",
34928+
"version": "dev"
34929+
},
3492234930
{
3492334931
"name": "viralmetagenome",
3492434932
"version": "1.0.1"
@@ -185788,7 +185796,13 @@
185788185796
"@kherronism",
185789185797
"@gallvp"
185790185798
]
185791-
}
185799+
},
185800+
"pipelines": [
185801+
{
185802+
"name": "genomeqc",
185803+
"version": "dev"
185804+
}
185805+
]
185792185806
},
185793185807
{
185794185808
"name": "repeatmasker_rmouttogff3",
@@ -185960,7 +185974,13 @@
185960185974
"maintainers": [
185961185975
"@GallVp"
185962185976
]
185963-
}
185977+
},
185978+
"pipelines": [
185979+
{
185980+
"name": "genomeqc",
185981+
"version": "dev"
185982+
}
185983+
]
185964185984
},
185965185985
{
185966185986
"name": "repeatmodeler_repeatmodeler",
@@ -186083,7 +186103,13 @@
186083186103
"maintainers": [
186084186104
"@GallVp"
186085186105
]
186086-
}
186106+
},
186107+
"pipelines": [
186108+
{
186109+
"name": "genomeqc",
186110+
"version": "dev"
186111+
}
186112+
]
186087186113
},
186088186114
{
186089186115
"name": "resfinder_run",
@@ -265239,6 +265265,126 @@
265239265265
]
265240265266
}
265241265267
},
265268+
{
265269+
"name": "fastq_qc_stats",
265270+
"path": "subworkflows/nf-core/fastq_qc_stats/meta.yml",
265271+
"type": "subworkflow",
265272+
"meta": {
265273+
"name": "fastq_qc_stats",
265274+
"description": "Generate statistics for short read sequencing data using multiple tools",
265275+
"keywords": [
265276+
"fastq",
265277+
"qc",
265278+
"fastqc",
265279+
"seqfu",
265280+
"seqkit",
265281+
"seqtk"
265282+
],
265283+
"components": [
265284+
"fastqc",
265285+
"seqfu/check",
265286+
"seqfu/stats",
265287+
"seqkit/stats",
265288+
"seqtk/comp"
265289+
],
265290+
"input": [
265291+
{
265292+
"reads": {
265293+
"type": "file",
265294+
"description": "List of input FastQ files of size 1 and 2 for single-end and paired-end data,\nrespectively.\n"
265295+
}
265296+
},
265297+
{
265298+
"skip_fastqc": {
265299+
"type": "boolean",
265300+
"description": "Skip fastqc process\n"
265301+
}
265302+
},
265303+
{
265304+
"skip_seqfu_check": {
265305+
"type": "boolean",
265306+
"description": "Skip seqfu_check process\n"
265307+
}
265308+
},
265309+
{
265310+
"skip_seqfu_stats": {
265311+
"type": "boolean",
265312+
"description": "Skip seqfu_stats process\n"
265313+
}
265314+
},
265315+
{
265316+
"skip_seqkit_stats": {
265317+
"type": "boolean",
265318+
"description": "Skip seqkit_stats process\n"
265319+
}
265320+
},
265321+
{
265322+
"skip_seqtk_comp": {
265323+
"type": "boolean",
265324+
"description": "Skip seqtk_comp process\n"
265325+
}
265326+
}
265327+
],
265328+
"output": [
265329+
{
265330+
"fastqc_html": {
265331+
"type": "file",
265332+
"description": "FastQC report",
265333+
"pattern": "*_fastqc.html"
265334+
}
265335+
},
265336+
{
265337+
"fastqc_zip": {
265338+
"type": "file",
265339+
"description": "FastQC report archive",
265340+
"pattern": "*_fastqc.zip"
265341+
}
265342+
},
265343+
{
265344+
"seqfu_check": {
265345+
"type": "file",
265346+
"description": "seqfu check tsv report",
265347+
"pattern": "*.tsv"
265348+
}
265349+
},
265350+
{
265351+
"seqfu_stats": {
265352+
"type": "file",
265353+
"description": "seqfu stats tsv report",
265354+
"pattern": "*.tsv"
265355+
}
265356+
},
265357+
{
265358+
"seqfu_multiqc": {
265359+
"type": "file",
265360+
"description": "seqfu stats MultiQC report",
265361+
"pattern": "*_mqc.txt"
265362+
}
265363+
},
265364+
{
265365+
"seqkit_stats": {
265366+
"type": "file",
265367+
"description": "seqkit stats report",
265368+
"pattern": "*.tsv"
265369+
}
265370+
},
265371+
{
265372+
"versions": {
265373+
"type": "file",
265374+
"description": "File containing software versions",
265375+
"pattern": "versions.yml"
265376+
}
265377+
}
265378+
],
265379+
"authors": [
265380+
"@pablo-scd"
265381+
],
265382+
"maintainers": [
265383+
"@pablo-scd",
265384+
"@vagkaratzas"
265385+
]
265386+
}
265387+
},
265242265388
{
265243265389
"name": "fastq_qc_trim_filter_setstrandedness",
265244265390
"path": "subworkflows/nf-core/fastq_qc_trim_filter_setstrandedness/meta.yml",

0 commit comments

Comments
 (0)