Skip to content

Commit 2e9610a

Browse files
committed
Rename markdown to jupyter reports reference
1 parent ede57ed commit 2e9610a

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

COMMANDS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ Change into the [scripts](./scripts/) directory e.g. with `cd scripts` and then
118118
./generateScriptReference.sh
119119
```
120120
121-
### Update Markdown Reference
121+
### Generate Jupyter Notebook Report Reference
122122
123-
Change into the [results](./results/) directory e.g. with `cd results` and then execute the script [generateMarkdownReference.sh](./scripts/generateMarkdownReference.sh) with the following command:
123+
Change into the [results](./results/) directory e.g. with `cd results` and then execute the script [generateJupyterReportsReference.sh](./scripts/generateJupyterReportsReference.sh) with the following command:
124124
125125
👉**Note:** This script is automatically triggered at the end of [copyReportsIntoResults.sh](./scripts/copyReportsIntoResults.sh)
126126
which is included in the pipeline [code-structure-analysis.yml](.github/workflows/code-structure-analysis.yml) and doesn't need to be executed manually normally.
127127

128128
```script
129-
./../scripts/generateMarkdownReference.sh
129+
./../scripts/generateJupyterReportsReference.sh
130130
```
131131

132132
### Generate Environment Variable Reference

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ The [Code Structure Analysis Pipeline](./.github/workflows/code-structure-analys
8181

8282
[COMMANDS.md](./COMMANDS.md) contains further details on commands and how to do a manual setup.
8383

84-
## 📈 Report Reference
84+
## 📈 Jupyter Notebook Report Reference
8585

86-
[REPORTS.md](./results/REPORTS.md) lists all Markdown reports inside the [results](./results).
86+
[JUPYTER_REPORTS.md](./results/JUPYTER_REPORTS.md) lists all Jupyter Notebook reports inside the [results](./results) directory. It can be generated as described in [Generate Jupyter Notebook Report Reference](./COMMANDS.md#generate-jupyter-notebook-report-reference).
8787

8888
## ⚙️ Script Reference
8989

scripts/SCRIPTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Script | Directory | Description
1818
| [executeQueryFunctions.sh](./executeQueryFunctions.sh) | | Provides functions to execute Cypher queries using either "executeQuery.sh" or Neo4j's "cypher-shell". |
1919
| [generateCypherReference.sh](./generateCypherReference.sh) | | Generates "CYPHER.md" containing a reference to all Cypher files in this directory and its subdirectories. |
2020
| [generateEnvironmentVariablesReference.sh](./generateEnvironmentVariablesReference.sh) | | Runs "appendEnvironmentVariable.sh" for every script file in the current directory and its sub directories. |
21-
| [generateMarkdownReference.sh](./generateMarkdownReference.sh) | | Generates "REPORTS.md" containing a reference to all scripts in this directory and its subdirectories. |
21+
| [generateJupyterReportsReference.sh](./generateJupyterReportsReference.sh) | | Generates "JUPYTER_REPORTS.md" containing a reference to all Jupyter Notebook Markdown reports in this directory and its subdirectories. |
2222
| [generateScriptReference.sh](./generateScriptReference.sh) | | Generates "SCRIPTS.md" containing a reference to all scripts in this directory and its subdirectories. |
2323
| [prepareAnalysis.sh](./prepareAnalysis.sh) | | Prepares and validates the graph database before analysis |
2424
| [Default.sh](./profiles/Default.sh) | profiles | Sets (if any) settings variables for a default analysis. |

scripts/copyReportsIntoResults.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Notice that this scripts needs to be executed within the "temp" directory.
88

9-
# Requires generateMarkdownReference.sh
9+
# Requires generateJupyterReportReference.sh
1010

1111
## Get this "scripts" directory if not already set
1212
# Even if $BASH_SOURCE is made for Bourne-like shells it is also supported by others and therefore here the preferred solution.
@@ -40,5 +40,5 @@ for report_source_folder in **/"${REPORTS_DIRECTORY}"; do
4040
cp -Rp "${report_source_folder}" "${reportTargetDirectory}"
4141
done
4242

43-
# Generate REPORTS.md containing a reference to all Markdown Reports in the "results" directory and its subdirectories.
44-
(cd "./../${RESULTS_DIRECTORY}" && exec "${SCRIPTS_DIR}/generateMarkdownReference.sh")
43+
# Generate REPORTS.md containing a reference to all Jupyter Notebook Markdown reports in the "results" directory and its subdirectories.
44+
(cd "./../${RESULTS_DIRECTORY}" && exec "${SCRIPTS_DIR}/generateJupyterReportReference.sh")

scripts/generateMarkdownReference.sh renamed to scripts/generateJupyterReportsReference.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/usr/bin/env bash
22

3-
# Generates "REPORTS.md" containing a reference to all scripts in this directory and its subdirectories.
3+
# Generates "JUPYTER_REPORTS.md" containing a reference to all Jupyter Notebook Markdown reports in this directory and its subdirectories.
44
# This script was generated by Chat-GPT after some messages back and forth and then tuned manually.
55

66
# Markdown file name
7-
markdown_file="REPORTS.md"
7+
markdown_file="JUPYTER_REPORTS.md"
88

99
{
1010
echo "# Markdown Reports Reference"
1111
echo ""
12-
echo "This document serves as a reference for all Markdown in the current directory and its subdirectories."
12+
echo "This document serves as a reference for all Jupyter Notebook reports in the current directory and its subdirectories."
1313
echo "It provides a table listing each file and its corresponding description found in the first header line."
1414
echo "This file was generated with the script [generateMarkdownReference.sh](./../scripts/generateMarkdownReference.sh)."
1515
echo ""

0 commit comments

Comments
 (0)