-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
Dicoogle 3 supports unindexing files in bulk by specifying DICOM-level unique identifiers (SOPInstanceUID, SeriesInstanceUID, StudyInstanceUID) instead of URIs. (dicoogle/dicoogle#391)
The unindex method may then be extended to support this. One possible additional signature:
type EntryKey = "uri" | "SOPInstanceUID" | "SeriesInstanceUID" | "StudyInstanceUID";
unindex(key: EntryKey, entries: Array<string>, callback?): Promise<...>;Example of use:
await dicoogle.unindex('StudyInstanceUID', ['1.1.1.6666', '1.6.4.4.3231.753653']);