diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2022-01-10 18:58:40 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2022-01-10 18:58:40 +0100 |
commit | 5f9d05ff29816a330963196cdc9b54c1e6b1306d (patch) | |
tree | 9a0c2dbe614bdcbc56c9c8841b7894c016c281d6 /python | |
parent | 3c0cae2b81dbd4ff7621cf9b7e4a6183352984f0 (diff) | |
download | refcat-5f9d05ff29816a330963196cdc9b54c1e6b1306d.tar.gz refcat-5f9d05ff29816a330963196cdc9b54c1e6b1306d.zip |
tasks: update docs
Diffstat (limited to 'python')
-rw-r--r-- | python/refcat/tasks.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 086dbc4..b4d200d 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -272,6 +272,16 @@ class WikipediaCitationsMinimalDataset(luigi.ExternalTask, Refcat): 3790 SSRN 3013 ZBL + The minimal version looks like this: + + { + "type_of_citation": "citation", + "page_title": "List of R1a frequency by population", + "Title": "High-resolution phylogenetic analysis ...", + "ID_list": "{PMID=15944443, DOI=10.1093/molbev/msi185}" + } + + """ def output(self): return luigi.LocalTarget(path=os.path.join(settings.WIKIPEDIA_CITATIONS, "minimal_dataset.json")) |