Skip to content

Commit 5dc52c1

Browse files
committed
Fix copy&paste descriptions
1 parent 1f68acd commit 5dc52c1

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

scripts/SCRIPTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Script | Directory | Description
2323
| [CentralityCsv.sh](./reports/CentralityCsv.sh) | reports | Looks for centrality using the Graph Data Science Library of Neo4j and creates CSV reports. |
2424
| [CommunityCsv.sh](./reports/CommunityCsv.sh) | reports | Detects communities using the Graph Data Science Library of Neo4j and creates CSV reports. |
2525
| [DatabaseCsvExport.sh](./reports/DatabaseCsvExport.sh) | reports | Exports the whole graph database as a CSV file using the APOC procedure "apoc.export.csv.all" |
26-
| [ExternalDependenciesCsv.sh](./reports/ExternalDependenciesCsv.sh) | reports | Executes "Package_Usage" Cypher queries to get the "package-dependencies" CSV reports. |
26+
| [ExternalDependenciesCsv.sh](./reports/ExternalDependenciesCsv.sh) | reports | Executes "Package_Usage" Cypher queries to get the "external-dependencies-csv" CSV reports. |
2727
| [ExternalDependenciesJupyter.sh](./reports/ExternalDependenciesJupyter.sh) | reports | Creates the "overview" report (ipynb, md, pdf) based on the Jupyter Notebook "Overview.ipynb". |
2828
| [InternalDependenciesCsv.sh](./reports/InternalDependenciesCsv.sh) | reports | Executes "Package_Usage" Cypher queries to get the "internal-dependencies" CSV reports. |
2929
| [InternalDependenciesJupyter.sh](./reports/InternalDependenciesJupyter.sh) | reports | Creates the "internal-dependencies" report (ipynb, md, pdf) based on the Jupyter Notebook "InternalDependencies.ipynb". |
3030
| [ObjectOrientedDesignMetricsCsv.sh](./reports/ObjectOrientedDesignMetricsCsv.sh) | reports | Executes "Metrics" Cypher queries to get the "object-oriented-design-metrics" CSV reports. |
3131
| [ObjectOrientedDesignMetricsJupyter.sh](./reports/ObjectOrientedDesignMetricsJupyter.sh) | reports | Creates the "object-oriented-design-metrics" report (ipynb, md, pdf) based on the Jupyter Notebook "ObjectOrientedDesignMetrics.ipynb". |
32-
| [OverviewCsv.sh](./reports/OverviewCsv.sh) | reports | Executes "Package_Usage" Cypher queries to get the "package-dependencies" CSV reports. |
32+
| [OverviewCsv.sh](./reports/OverviewCsv.sh) | reports | Executes "Overview" Cypher queries to get the "overview-csv" CSV reports. |
3333
| [OverviewJupyter.sh](./reports/OverviewJupyter.sh) | reports | Creates the "overview" report (ipynb, md, pdf) based on the Jupyter Notebook "Overview.ipynb". |
3434
| [SimilarityCsv.sh](./reports/SimilarityCsv.sh) | reports | Looks for similarity using the Graph Data Science Library of Neo4j and creates CSV reports. |
3535
| [VisibilityMetricsCsv.sh](./reports/VisibilityMetricsCsv.sh) | reports | Executes "Visibility" Cypher queries to get the "visibility-metrics" CSV reports. |

scripts/reports/ExternalDependenciesCsv.sh

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

3-
# Executes "Package_Usage" Cypher queries to get the "package-dependencies" CSV reports.
4-
# It contains lists of e.g. incoming and outgoing package dependencies,
5-
# abstractness, instability and the distance to the so called "main sequence".
3+
# Executes "Package_Usage" Cypher queries to get the "external-dependencies-csv" CSV reports.
4+
# They list external library package usage like how often a external package is called.
65

76
# Overrideable Constants (defaults also defined in sub scripts)
87
REPORTS_DIRECTORY=${REPORTS_DIRECTORY:-"reports"}

scripts/reports/OverviewCsv.sh

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

3-
# Executes "Package_Usage" Cypher queries to get the "package-dependencies" CSV reports.
4-
# It contains lists of e.g. incoming and outgoing package dependencies,
5-
# abstractness, instability and the distance to the so called "main sequence".
3+
# Executes "Overview" Cypher queries to get the "overview-csv" CSV reports.
4+
# It contains the numbers of packages, types, methods, cyclic complexity, etc.
65

76
# Overrideable Constants (defaults also defined in sub scripts)
87
REPORTS_DIRECTORY=${REPORTS_DIRECTORY:-"reports"}

0 commit comments

Comments
 (0)