You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- run pipeline including with some testdata (For more details, see the section [How to run FastOMA on the test data](https://github.com/DessimozLab/fastoma?tab=readme-ov-file#how-to-run-fastoma-on-the-test-data) )
128
128
```bash
129
-
nextflow run FastOMA.nf -profile standard --input_folder testdata/in_folder --output_folder output -with-report
129
+
nextflow run FastOMA.nf -profile standard --input testdata/in_folder --output_folder output -with-report
130
130
```
131
131
132
132
@@ -172,7 +172,7 @@ mamba activate FastOMA
172
172
Afterwards, you can run the workflow using nextflow (which is installed as part of the conda environment)
173
173
174
174
```
175
-
nextflow run FastOMA.nf -profile standard|slurm --input_folder /path/to/input_folder --output_folder /path/to/output
175
+
nextflow run FastOMA.nf -profile standard|slurm --input /path/to/input --output_folder /path/to/output
176
176
```
177
177
Note that you should use either the profile `standard` or `slurm` such the nextflow executor will use the activated environment.
178
178
@@ -191,7 +191,7 @@ One can select the desired container via the `--container_version` argument
Copy file name to clipboardExpand all lines: nextflow_schema.json
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -9,18 +9,24 @@
9
9
"title": "Input options",
10
10
"type": "object",
11
11
"description": "Define where the pipeline should find input data ",
12
-
"required": ["input_folder", "species_tree"],
12
+
"required": ["input", "species_tree"],
13
13
"properties": {
14
-
"input_folder": {
14
+
"input": {
15
15
"type": "string",
16
-
"description": "Path to input directory containing proteomes and species tree",
17
-
"fa_icon": "fas fa-folder-open"
16
+
"description": "Input data source: local directory, archive file, or remote URL",
17
+
"help": "Can be: (1) Path to a local directory containing proteome/ subfolder and species_tree.nwk file, (2) Path to a local archive file (.tar.gz, .tgz, .zip), or (3) HTTP/HTTPS URL to download an archive. Archives will be automatically extracted and cached.",
"description": "Path to input directory containing the proteome files in fasta format",
23
-
"help": "If not provided, the proteomes are asumed to be in the input_folder/proteomes directory.",
29
+
"help": "Override the default proteome folder location. Only used when input is a local directory. If not specified, defaults to input/proteome/.",
24
30
"fa_icon": "fas fa-folder-open"
25
31
},
26
32
"hogmap_in": {
@@ -33,17 +39,17 @@
33
39
"species_tree": {
34
40
"type": "string",
35
41
"format": "file-path",
36
-
"description": "Path to species tree file",
42
+
"description": "Path to species tree file in Newick format",
37
43
"fa_icon": "fas fa-tree",
38
44
"pattern": "^\\S+\\.(nhx|nh|nwk)",
39
-
"help": "The species tree should be in Newick or NHX format. By default, the pipeline looks for a file named species_tree.nwk in the input_folder."
45
+
"help": "Override the default species tree location. Only used when input is a local directory. If not specified, defaults to input/species_tree.nwk."
40
46
},
41
47
"splice_folder": {
42
48
"type": "string",
43
49
"format": "directory-path",
44
50
"description": "Path to input directory containing the splice files",
45
51
"fa_icon": "fas fa-folder-open",
46
-
"help": "If provided, FastOMA will use the splice files to identify and handle alternative splicing isoforms in the proteomes and select the best representative isoform for each gene."
52
+
"help": "If provided, FastOMA will use splice variant information to select representative isoforms for each gene. Only used when input is a local directory."
0 commit comments