Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bibx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"read_wos",
]

__version__ = "0.6.2"
__version__ = "0.6.3"


def query_openalex(
Expand Down
2 changes: 1 addition & 1 deletion src/bibx/builders/wos.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class WosCollectionBuilder(CollectionBuilder):
"""Builder for collections of articles from Web of Science (WoS) ISI files."""

ISI_LINE_PATTERN = re.compile(
r"^(null|.)?((?P<field>[A-Z0-9]{2})| )( (?P<value>.*))?$"
r"^((null)+|.)?((?P<field>[A-Z0-9]{2})| )( (?P<value>.*))?$"
)
ISI_CITATION_PATTERN = re.compile(
r"""^(?P<AU>[^,]+),[ ] # First author
Expand Down