Skip to content

Commit c91c24f

Browse files
committed
Prettify file tree printouts
1 parent bec3bd1 commit c91c24f

2 files changed

Lines changed: 33 additions & 36 deletions

File tree

lectures/containers/containers.qmd

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,16 @@ Linux 407b0fd13fe5 4.9.60-linuxkit-aufs [...] x86_64 GNU/Linux
104104
Local `project/` directory:
105105
```{.bash code-line-numbers="1|2-11|3"}
106106
$ ls
107-
|- doc/
108-
|- data/
109-
|- code/
110-
|- logs/
111-
|- results/
112-
|- Snakefile
113-
|- config.yml
114-
|- environment.yml
115-
|- Dockerfile
116-
|- README.md
107+
├── doc/
108+
├── data/
109+
├── code/
110+
├── logs/
111+
├── results/
112+
├── Snakefile
113+
├── config.yml
114+
├── environment.yml
115+
├── Dockerfile
116+
└── README.md
117117
```
118118
:::
119119
:::
@@ -127,14 +127,14 @@ $ docker run \
127127
ubuntu:16.04 \
128128
ls
129129

130-
|- bin/
131-
|- dev/
132-
|- etc/
133-
|- home/
134-
| |- data/
135-
|- lib/
136-
|- sys/
137-
|- usr/
130+
├── bin/
131+
├── dev/
132+
├── etc/
133+
├── home/
134+
│ └── data/
135+
├── lib/
136+
├── sys/
137+
└── usr/
138138
```
139139
:::
140140
:::

pages/conda.qmd

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -350,24 +350,21 @@ mentioned above).
350350
now have the following structure:
351351

352352
```no-highlight
353-
conda/
354-
|
355-
|- data/
356-
| |- SRR935090.fastq.gz
357-
| |- SRR935091.fastq.gz
358-
| |- SRR935092.fastq.gz
359-
|
360-
|- results/
361-
| |- fastqc/
362-
| |- SRR935090_fastqc.html
363-
| |- SRR935090_fastqc.zip
364-
| |- SRR935091_fastqc.html
365-
| |- SRR935091_fastqc.zip
366-
| |- SRR935092_fastqc.html
367-
| |- SRR935092_fastqc.zip
368-
|
369-
|- environment.yml
370-
|- run_qc.sh
353+
conda
354+
├── data
355+
│   ├── SRR935090.fastq.gz
356+
│   ├── SRR935091.fastq.gz
357+
│   └── SRR935092.fastq.gz
358+
├── results
359+
│   └── fastqc
360+
│   ├── SRR935090_fastqc.html
361+
│   ├── SRR935090_fastqc.zip
362+
│   ├── SRR935091_fastqc.html
363+
│   ├── SRR935091_fastqc.zip
364+
│   ├── SRR935092_fastqc.html
365+
│   └── SRR935092_fastqc.zip
366+
├── environment.yml
367+
└── run_qc.sh
371368
```
372369

373370
Note that all that was needed to carry out the analysis and generate these files

0 commit comments

Comments
 (0)