@@ -9,7 +9,7 @@ Details about the configuration JSON file can be found in the :doc:`jsonschema`
99section, but in general the sections of the configuration JSON file that aren't
1010needed for a particular command are not required. For instance, the ORCID_search
1111section is not required for reference_search since it does not search ORCID. The
12- same is true if the --no_ORCID option is used.
12+ same is true if the --no-ORCID option is used.
1313
1414Outputs
1515~~~~~~~
@@ -27,7 +27,7 @@ Command Line Signature
2727----------------------
2828.. code-block :: console
2929
30- academic_tracker author_search <config_json_file> [--test --prev_pub =<file-path> --no_GoogleScholar --no_ORCID --no_Crossref --no_PubMed --verbose --silent]
30+ academic_tracker author_search <config_json_file> [--test --prev-pub =<file-path> --no-GoogleScholar --no-ORCID --no-Crossref --no-PubMed --verbose --silent]
3131
3232
3333 Description
@@ -38,11 +38,11 @@ on. The cutoff_year attribute for either the projects or the authors can be used
3838to filter the publications to only those in that year or after.
3939
4040Similarly, a previous publications JSON file can be used to filter out publications
41- that are already in the file. This file can be specified manually with the --prev_pub
41+ that are already in the file. This file can be specified manually with the --prev-pub
4242option. If not specified manually author_search will automatically look for a
4343publications.json file in the most recent tracker directories and if it finds
4444one it will be used as the previous publications. To stop this automatic lookup
45- enter "ignore" for the --prev_pub option. The output publications.json file will
45+ enter "ignore" for the --prev-pub option. The output publications.json file will
4646be a combination of the previous publications and any new publications found. To
4747be clear the new publications.json file will be the previous publications.json
4848file with any new entries added in.
@@ -72,25 +72,25 @@ Options
7272The test option changes the name of the output directory from tracker-YYMMDDHHMM
7373to tracker-test-YYMMDDHHMM and prevents any emails from being sent.
7474
75- --prev_pub :
75+ --prev-pub :
7676
7777Specifies a publications.json file to use as a list of publications to ignore
7878when searching for new publications. Set to "ignore" to prevent author_search
7979from automatically looking for a publications.json file in tracker directories.
8080
81- --no_GoogleScholar :
81+ --no-GoogleScholar :
8282
8383If used author_search will not search Google Scholar for publications.
8484
85- --no_ORCID :
85+ --no-ORCID :
8686
8787If used author_search will not search ORCID for publications.
8888
89- --no_Crossref :
89+ --no-Crossref :
9090
9191If used author_search will not search Crossref for publications.
9292
93- --no_PubMed :
93+ --no-PubMed :
9494
9595If used author_search will not search PubMed for publications. This option is
9696assumed if the PubMed_search section of the configuration JSON file is missing.
@@ -282,7 +282,7 @@ Designating a previous publications filepath instead of letting Academic Tracker
282282
283283.. code-block :: console
284284
285- >academic_tracker author_search config_file.json --prev_pub prev_pub_file_path.json
285+ >academic_tracker author_search config_file.json --prev-pub prev_pub_file_path.json
286286 Finding author's publications. This could take a while.
287287 Searching PubMed.
288288 Searching ORCID.
@@ -345,7 +345,7 @@ Console:
345345
346346.. code-block :: console
347347
348- >academic_tracker author_search config_file.json --no_ORCID
348+ >academic_tracker author_search config_file.json --no-ORCID
349349 Finding author's publications. This could take a while.
350350 Searching PubMed.
351351 Searching Google Scholar.
@@ -361,7 +361,7 @@ Command Line Signature
361361----------------------
362362.. code-block :: console
363363
364- academic_tracker reference_search <config_json_file> <references_file_or_URL> [--test --prev_pub =<file-path> --PMID_reference --MEDLINE_reference --no_Crossref --no_PubMed --verbose --silent]
364+ academic_tracker reference_search <config_json_file> <references_file_or_URL> [--test --prev-pub =<file-path> --PMID-reference --MEDLINE-reference --no-Crossref --no-PubMed --verbose --silent]
365365
366366
367367 Description
@@ -380,21 +380,21 @@ is expected to be the first page of a bibliography and will be tokenized in a
380380specific way. All other URLs are simply read as a text file and tokenized like
381381one.
382382
383- The --PMID_reference and --MEDLINE_reference options change how the reference file
384- is interpreted. If the --PMID_reference option is used then it indicates that the
383+ The --PMID-reference and --MEDLINE-reference options change how the reference file
384+ is interpreted. If the --PMID-reference option is used then it indicates that the
385385given reference file is a list of PMIDs (PubMed's unique IDs). Instead of tokenizing
386386this file it is assumed that each line is a PMID so PubMed will be queried for
387387each PMID and Crossref will not be queried. The idea for this option was to be
388388able to quickly grab information from PubMed.
389389
390- The --MEDLINE_reference option indicates that given reference file is a MEDLINE _
390+ The --MEDLINE-reference option indicates that given reference file is a MEDLINE _
391391formatted file. This will be tokenized in a unique way since the publication
392392information is spread out over multiple lines in this format. This format is
393393supported because it is a dounload option on MyNCBI bibliography pages.
394394
395395Details about tokenization are in the :doc: `tokenization ` section.
396396
397- The --prev_pub option is different for reference_search than it is for author_search.
397+ The --prev-pub option is different for reference_search than it is for author_search.
398398First, reference_search does not automatically look for a publicaitons.json file
399399to use since the same assumptions as described for author_search do not hold here.
400400Second, publications in the prev_pub file are not used to ignore publications.
@@ -410,25 +410,25 @@ Options
410410The test option changes the name of the output directory from tracker-YYMMDDHHMM
411411to tracker-test-YYMMDDHHMM and prevents any emails from being sent.
412412
413- --prev_pub :
413+ --prev-pub :
414414
415415Specifies a publications.json file to use as a list of publications to compare
416416with when generating the summary report.
417417
418- --PMID_reference :
418+ --PMID-reference :
419419
420420Specifies that the reference file is a list of PMIDs and to only return
421421information from PubMed.
422422
423- --MEDLINE_reference :
423+ --MEDLINE-reference :
424424
425425Specifies that the reference file is a MEDLINE _ formatted file.
426426
427- --no_Crossref :
427+ --no-Crossref :
428428
429429If used reference_search will not search Crossref for publications.
430430
431- --no_PubMed :
431+ --no-PubMed :
432432
433433If used reference_search will not search Crossref for publications. This option
434434is assumed if the PubMed_search section of the configuration JSON file is missing.
@@ -456,7 +456,7 @@ the summary_report section of the configuration JSON file.
456456A summary_report.txt file is only created if the summary_report attribute is in
457457the configuration JSON file.
458458
459- If --PMID_reference is used no reports or emails are generated.
459+ If --PMID-reference is used no reports or emails are generated.
460460
461461Details about reports can be found in the :doc: `reporting ` section.
462462
@@ -514,7 +514,7 @@ Designating a previous publications filepath.
514514
515515.. code-block :: console
516516
517- >academic_tracker reference_search config_file.json reference_file.txt --prev_pub prev_pub_file_path.json
517+ >academic_tracker reference_search config_file.json reference_file.txt --prev-pub prev_pub_file_path.json
518518 Finding publications. This could take a while.
519519 Searching PubMed.
520520 Searching Crossref.
@@ -542,7 +542,7 @@ Console:
542542
543543.. code-block :: console
544544
545- >academic_tracker reference_search config_file.json reference_file.txt --no_Crossref
545+ >academic_tracker reference_search config_file.json reference_file.txt --no-Crossref
546546 Finding publications. This could take a while.
547547 Searching PubMed.
548548 Success. Publications and reports saved in tracker-2202020140
@@ -817,7 +817,7 @@ Command Line Signature
817817----------------------
818818.. code-block :: console
819819
820- academic_tracker tokenize_reference <references_file_or_URL> [--MEDLINE_reference --verbose --silent]
820+ academic_tracker tokenize_reference <references_file_or_URL> [--MEDLINE-reference --verbose --silent]
821821
822822
823823 Description
@@ -827,7 +827,7 @@ Tokenize the input reference and output a tokenization report and JSON file.
827827
828828Options
829829-------
830- --MEDLINE_reference :
830+ --MEDLINE-reference :
831831
832832Specifies that the reference file is a MEDLINE _ formatted file.
833833
@@ -993,7 +993,7 @@ Command Line Signature
993993----------------------
994994.. code-block :: console
995995
996- academic_tracker gen_reports_and_emails_ref <config_json_file> <references_file_or_URL> <publication_json_file> [--test --prev_pub =<file-path> --MEDLINE_reference --verbose --silent]
996+ academic_tracker gen_reports_and_emails_ref <config_json_file> <references_file_or_URL> <publication_json_file> [--test --prev-pub =<file-path> --MEDLINE-reference --verbose --silent]
997997
998998
999999 Description
@@ -1030,12 +1030,12 @@ Options
10301030The test option changes the name of the output directory from tracker-YYMMDDHHMM
10311031to tracker-test-YYMMDDHHMM and prevents any emails from being sent.
10321032
1033- --prev_pub :
1033+ --prev-pub :
10341034
10351035Specifies a publications.json file to use as a list of publications to compare
10361036with when generating the summary report.
10371037
1038- --MEDLINE_reference :
1038+ --MEDLINE-reference :
10391039
10401040Specifies that the reference file is a MEDLINE _ formatted file.
10411041
0 commit comments