You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6
6
7
7
To see tags and releases, please go to [Tags](https://github.com/AlexJSully/Publication-Figure-Retrieval/tags) on [GitHub](https://github.com/AlexJSully/Publication-Figure-Retrieval).
8
8
9
+
## [3.0.1] - 2024-08-26
10
+
11
+
Feature:
12
+
13
+
- Re-added the ability to resume the process if it was canceled
14
+
9
15
## [3.0.0] - 2024-08-25
10
16
11
17
The `Publication Figures Web Scraper` has been renamed to `Publication Figure Retrieval` as it no longer scrapes data from the web. Instead, it retrieves data from the NCBI API. This major change was done to comply with the NCBI's terms of service and policies.
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,17 +30,19 @@ Then run
30
30
npm install
31
31
```
32
32
33
-
followed by
33
+
### Running locally
34
+
35
+
To start and run the publication figure retrieval tool, run the following command:
34
36
35
37
```bash
36
-
npm start
38
+
npm run start
37
39
```
38
40
39
-
This tool runs within your Node.js environment. On Windows, this script may need to run in administrator mode.
41
+
If you chose to cancel this process at any time, you can resume and continue where you left off by running the same command. It will store the already processed PMC IDs in `build/output/cache/id.json`. To reset the cache, delete the `id.json` file.
40
42
41
43
### Usage
42
44
43
-
The images are downloaded locally within the `build/processor/output` directory.
45
+
The images are downloaded locally within the `build/output` directory. They are organized by species then by publication ID.
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "publication-figure-retriever",
3
-
"version": "3.0.0",
3
+
"version": "3.0.1",
4
4
"description": "This tool provides a method for retrieving figures from NCBI's PubMed publications using NIH APIs for open access and publicly available publications.",
0 commit comments