-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
import PMID field in Pubmed (#11513)
* import PMID field in Pubmed Fixes #11488 * fix tests --------- Co-authored-by: Carl Christian Snethlage <[email protected]>
- Loading branch information
1 parent
714abd1
commit 234ee2e
Showing
8 changed files
with
71 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
.../resources/org/jabref/logic/importer/fileformat/MedlinePlainImporterStringOutOfBounds.bib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
@misc{, | ||
title = {This is a test title} | ||
title = {This is a test title}, | ||
pmid = {27433151 SO invalid line}, | ||
|
||
} | ||
@misc{, | ||
title = {This is also a test title} | ||
title = {This is also a test title}, | ||
pmid = {27394443 SO- another invalid line}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
src/test/resources/org/jabref/logic/importer/fileformat/MedlinePlainImporterTestDOI.bib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
@TechReport{, | ||
doi = {10.1016/j.cpr.2005.02.002} | ||
doi = {10.1016/j.cpr.2005.02.002}, | ||
pmid = {22664220}, | ||
} |
4 changes: 3 additions & 1 deletion
4
...t/resources/org/jabref/logic/importer/fileformat/MedlinePlainImporterTestInproceeding.bib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@InProceedings{, | ||
Booktitle = {Inproceedings book title} | ||
Booktitle = {Inproceedings book title}, | ||
pmid = {22664238}, | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters