From 708bd8ebeed76ac425d359467cb95f8c59d75e09 Mon Sep 17 00:00:00 2001 From: Diomidis Spinellis Date: Sat, 28 Sep 2024 20:22:52 +0300 Subject: [PATCH] Update progress indicator option --- examples/author-productivity/Makefile | 2 +- examples/authors-by-decade/Makefile | 2 +- examples/cdindex/Makefile | 2 +- examples/common/Makefile | 8 ++++---- examples/covid/Makefile | 2 +- examples/cs_cdindex/Makefile | 2 +- examples/graph/Makefile | 2 +- examples/impact-factor-2021/Makefile | 2 +- examples/journal-h5/Makefile | 2 +- examples/open-access/Makefile | 2 +- examples/orcid/Makefile | 2 +- examples/person-h5/Makefile | 2 +- examples/sample/Makefile | 2 +- examples/soft-eng-h5/Makefile | 2 +- examples/tawfik/Makefile | 2 +- examples/uspto/Makefile | 2 +- examples/yearly-numpages/Makefile | 2 +- 17 files changed, 20 insertions(+), 20 deletions(-) diff --git a/examples/author-productivity/Makefile b/examples/author-productivity/Makefile index 6bac9a41..4aade892 100644 --- a/examples/author-productivity/Makefile +++ b/examples/author-productivity/Makefile @@ -11,7 +11,7 @@ include ../common/Makefile # Populate database with a 0.02% sample of Crossref containers populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.id \ works.published_year \ diff --git a/examples/authors-by-decade/Makefile b/examples/authors-by-decade/Makefile index 5db2f415..483e18a5 100644 --- a/examples/authors-by-decade/Makefile +++ b/examples/authors-by-decade/Makefile @@ -10,7 +10,7 @@ include ../common/Makefile # Populate database with a 0.02% sample of Crossref containers populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --sample 'random.random() < 0.0002' \ --columns works.id \ diff --git a/examples/cdindex/Makefile b/examples/cdindex/Makefile index 887fce02..0eb1809e 100644 --- a/examples/cdindex/Makefile +++ b/examples/cdindex/Makefile @@ -13,7 +13,7 @@ include ../common/Makefile # Populate database with required fields populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.id \ works.doi \ diff --git a/examples/common/Makefile b/examples/common/Makefile index ba5aa1a1..84381cf4 100644 --- a/examples/common/Makefile +++ b/examples/common/Makefile @@ -44,11 +44,11 @@ $(DATACITE): # "populate" to populate the database with required data asjcs: populate - $(TIME) $(A3K) --debug progress populate "$(MAINDB).db" asjcs + $(TIME) $(A3K) --progress populate "$(MAINDB).db" asjcs touch $@ doaj: populate - $(TIME) $(A3K) --debug progress populate "$(MAINDB).db" doaj $(DOAJ) + $(TIME) $(A3K) --progress populate "$(MAINDB).db" doaj $(DOAJ) touch $@ link-works-asjcs: asjcs populate @@ -56,7 +56,7 @@ link-works-asjcs: asjcs populate touch $@ rors: populate $(ROR) - $(TIME) $(A3K) --debug progress populate "$(MAINDB).db" ror $(ROR) + $(TIME) $(A3K) --progress populate "$(MAINDB).db" ror $(ROR) touch $@ link-aa-base-ror: rors populate @@ -69,7 +69,7 @@ link-aa-top-ror: rors populate # Add journal names journal-names: - $(TIME) $(A3K) --debug progress populate "$(MAINDB).db" journal-names $(JOURNAL_NAMES) + $(TIME) $(A3K) --progress populate "$(MAINDB).db" journal-names $(JOURNAL_NAMES) touch $@ simple-rolap/Makefile: diff --git a/examples/covid/Makefile b/examples/covid/Makefile index 83818878..d1333052 100644 --- a/examples/covid/Makefile +++ b/examples/covid/Makefile @@ -9,7 +9,7 @@ include ../common/Makefile # Populate database with COVID publications populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --row-selection "title like '%COVID%' OR abstract like '%COVID%'" touch $@ diff --git a/examples/cs_cdindex/Makefile b/examples/cs_cdindex/Makefile index e5f9ca1a..bc82f17f 100644 --- a/examples/cs_cdindex/Makefile +++ b/examples/cs_cdindex/Makefile @@ -12,7 +12,7 @@ include ../common/Makefile # Populate database with required fields populate: $(CROSSREF_DIR) dblp.db - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --attach-databases 'dblp:dblp.db' \ --row-selection 'EXISTS (SELECT 1 FROM dblp.dois WHERE works.doi = dois.doi)' diff --git a/examples/graph/Makefile b/examples/graph/Makefile index 8c4635a0..17faefbc 100644 --- a/examples/graph/Makefile +++ b/examples/graph/Makefile @@ -12,7 +12,7 @@ include ../common/Makefile # Populate database with DOIs of works and their references populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.id \ works.doi \ diff --git a/examples/impact-factor-2021/Makefile b/examples/impact-factor-2021/Makefile index 5d427371..9c7326e3 100644 --- a/examples/impact-factor-2021/Makefile +++ b/examples/impact-factor-2021/Makefile @@ -9,7 +9,7 @@ include ../common/Makefile # Populate database with rows and columns needed to calculate IF populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.doi \ works.id \ diff --git a/examples/journal-h5/Makefile b/examples/journal-h5/Makefile index 654c4254..3acc3ce2 100644 --- a/examples/journal-h5/Makefile +++ b/examples/journal-h5/Makefile @@ -10,7 +10,7 @@ include ../common/Makefile # Populate database with required details for past five years populate: $(CROSSREF_DIR) # Populate database with DOIs of works and their references - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.doi works.issn_print works.issn_electronic \ work_references.doi \ diff --git a/examples/open-access/Makefile b/examples/open-access/Makefile index 972144b0..66706ac0 100644 --- a/examples/open-access/Makefile +++ b/examples/open-access/Makefile @@ -11,7 +11,7 @@ include ../common/Makefile # Populate database with DOIs of works and their references populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --row-selection 'works.issn_print is not null OR works.issn_electronic is not null' \ --columns works.id \ diff --git a/examples/orcid/Makefile b/examples/orcid/Makefile index 13aae28b..b22a0596 100644 --- a/examples/orcid/Makefile +++ b/examples/orcid/Makefile @@ -9,6 +9,6 @@ include ../common/Makefile # Populate database with ORCID data populate: $(ORCID_SUMMARIES) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" orcid "$(ORCID_SUMMARIES)" touch $@ diff --git a/examples/person-h5/Makefile b/examples/person-h5/Makefile index 074c5c6c..ebdb0d63 100644 --- a/examples/person-h5/Makefile +++ b/examples/person-h5/Makefile @@ -10,7 +10,7 @@ include ../common/Makefile # Populate database with required details for past five years populate: $(CROSSREF_DIR) # Populate database with DOIs of works and their references - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.id \ works.doi \ diff --git a/examples/sample/Makefile b/examples/sample/Makefile index 08ce2a6d..5c7996f5 100644 --- a/examples/sample/Makefile +++ b/examples/sample/Makefile @@ -9,7 +9,7 @@ include ../common/Makefile # Populate database with a 0.02% sample of Crossref containers populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --sample 'random.random() < 0.01' touch $@ diff --git a/examples/soft-eng-h5/Makefile b/examples/soft-eng-h5/Makefile index f1b2c0ea..c1b2691e 100644 --- a/examples/soft-eng-h5/Makefile +++ b/examples/soft-eng-h5/Makefile @@ -10,7 +10,7 @@ include ../common/Makefile # Populate database with required details for past five years populate: $(CROSSREF_DIR) # Populate database with DOIs of works and their references - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --row-selection-file se-5y.sql touch $@ diff --git a/examples/tawfik/Makefile b/examples/tawfik/Makefile index c24d60f1..c1bc24c2 100644 --- a/examples/tawfik/Makefile +++ b/examples/tawfik/Makefile @@ -9,7 +9,7 @@ export DEPENDENCIES=populate ../cdindex/tables/cdindex include ../common/Makefile populate: $(CROSSREF_DIR) tawfik-works.db - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --attach-databases 'tw:tawfik-works.db' \ --columns works.id \ diff --git a/examples/uspto/Makefile b/examples/uspto/Makefile index 1f87d25f..d4529700 100644 --- a/examples/uspto/Makefile +++ b/examples/uspto/Makefile @@ -9,6 +9,6 @@ include ../common/Makefile # Populate database with USPTO data populate: $(USPTO_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" uspto "$(USPTO_DIR)" touch $@ diff --git a/examples/yearly-numpages/Makefile b/examples/yearly-numpages/Makefile index f092c9d9..af040f5f 100644 --- a/examples/yearly-numpages/Makefile +++ b/examples/yearly-numpages/Makefile @@ -9,7 +9,7 @@ include ../common/Makefile # Populate database with works and their pages populate: $(CROSSREF_DIR) - $(TIME) $(A3K) --debug progress \ + $(TIME) $(A3K) --progress \ populate "$(MAINDB).db" crossref "$(CROSSREF_DIR)" \ --columns works.id \ works.published_year \