Skip to content

Commit be4dafc

Browse files
committed
Remove pipeline overview section
1 parent 6bc9779 commit be4dafc

3 files changed

Lines changed: 1 addition & 20 deletions

File tree

components/DownloadStatsJson.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
name: row.name,
5050
description: row.description,
5151
stargazers_count: row.stargazers_count,
52-
watchers_count: row.watchers_count,
5352
forks_count: row.forks_count,
5453
open_issues_count: row.open_issues_count,
5554
archived: row.archived,

pages/regulatory.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,6 @@ SELECT * FROM nfcore_db.regulatory_contributor_stats
2929

3030
The exported JSON contains the following data per pipeline:
3131

32-
- **Pipeline stats** — name, description, stars, watchers, forks, open issues, archive status, last release date
32+
- **Pipeline stats** — name, description, stars, forks, open issues, archive status, last release date
3333
- **Issue stats** — total/closed issue and PR counts, median time to close
3434
- **Contributor stats** — number of unique contributors
35-
36-
## Pipeline Overview
37-
38-
<DataTable
39-
data={pipeline_stats}
40-
search=true
41-
wrapTitles=true
42-
defaultSort={[{ id: 'name', desc: false }]}
43-
>
44-
<Column id="name" title="Pipeline" />
45-
<Column id="description" title="Description" />
46-
<Column id="stargazers_count" title="Stars" />
47-
<Column id="forks_count" title="Forks" />
48-
<Column id="open_issues_count" title="Open Issues" />
49-
<Column id="archived" title="Archived" />
50-
<Column id="last_release_date" title="Last Release" />
51-
</DataTable>

sources/nfcore_db/regulatory_pipeline_stats.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ SELECT
44
name,
55
description,
66
stargazers_count,
7-
watchers_count,
87
forks_count,
98
open_issues_count,
109
archived,

0 commit comments

Comments
 (0)