Skip to content

Commit 7cccd05

Browse files
authored
Merge pull request #491 from nf-core/docs-updates
Docs and tutorials updates
2 parents 8dc14fe + 671c49f commit 7cccd05

49 files changed

Lines changed: 25388 additions & 3685 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/markdownlint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ no-inline-html:
88
- img
99
- p
1010
- kbd
11+
- details
12+
- summary

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ By default the pipeline currently performs the following:
4545

4646
Additional functionality contained by the pipeline currently includes:
4747

48+
#### Input
49+
50+
* Automatic merging of complex sequencing setups (e.g. multiple lanes, sequencing configurations, library types)
51+
4852
#### Preprocessing
4953

5054
* Illumina two-coloured sequencer poly-G tail removal (`fastp`)

assets/multiqc_config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ top_modules:
9393
- 'mtnucratio'
9494
- 'qualimap'
9595
- 'sexdeterrmine'
96-
- 'gatk'
9796
- 'multivcfanalyzer':
9897
path_filters:
9998
- '*MultiVCFAnalyzer.json'

docs/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ The nf-core/eager documentation is split into the following files:
1414
1. This covers common nf-core errors
1515
7. [Frequently Asked Questions](faq.md)
1616
1. This covers more specific nf-core/eager errors
17+
8. Tutorials
18+
1. [How to write and use profiles for sharing your settings and reproducible science!](tutorial_profiles.md)

docs/code_contribution.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,11 @@ You then need to edit the script `bin/scrape_software_versions.py` to
141141
2. add a HTML block entry to the `OrderedDict` for formatting in MultiQC.
142142

143143
> If a tool does not unfortunately offer any printing of version data, you may add this 'manually' e.g. with `echo "v1.1" > v_<YOUR_TOOL>.txt`
144+
145+
## Images and Figures
146+
147+
For all internal nf-core/eager documentation images we are using the 'Kalam' font by the Indian Type Foundry and licensed under the Open Font License.
148+
149+
For the overview image we follow the nf-core [style and guidelines](https://nf-co.re/developers/design_guidelines).
150+
151+
These can be found for download [here](https://fonts.google.com/specimen/Kalam)

docs/faq.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,30 @@ Specifying the version of the run you are using is highly recommended, as it hel
2020

2121
You can see more information on the nextflow documentation [here](https://www.nextflow.io/docs/latest/sharing.html?highlight=revision#handling-revisions).
2222

23+
## I am only getting output for a single sample although I specified multiple with wildcards
24+
25+
You must specify paths to files in quotes, otherwise your shell will evaluate any wildcards (\*) rather than Nextflow.
26+
27+
For example
28+
29+
```bash
30+
nextflow run nf-core/eager --input /path/to/sample_*/*.fq.gz
31+
```
32+
33+
Would be evaluated by your shell as
34+
35+
```bash
36+
nextflow run nf-core/eager --input /path/to/sample_1/sample_1.fq.gz /path/to/sample_1/sample_1.fq.gz /path/to/sample_1/sample_1.fq.gz
37+
```
38+
39+
And Nextflow will only take the first path after `--input`, ignoring the others.
40+
41+
On the otherhand encapsulating the path in quotes will allow Nextflow to evaluate the paths.
42+
43+
```bash
44+
nextflow run nf-core/eager --input "/path/to/sample_*/*.fq.gz"
45+
```
46+
2347
## I specified a module and it didn't produce the expected output
2448

2549
Possible options:
337 KB
Loading
396 KB
Loading
788 KB
Loading

0 commit comments

Comments
 (0)