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: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,14 @@ Use `ls *.dcm | dcm`, `ls *.dcm | get name` or `ls *.dcm | select name type | dc
8
8
A [nushell](https://www.nushell.sh/) plugin to parse [DICOM](https://en.wikipedia.org/wiki/DICOM) objects.
9
9
10
10
This plugin is in the early stage of the development. It is usable but it might not be able to cope
11
-
with all DICOM objects or DicomWeb inputs. See [Known limitations for details](#known-limitations).
11
+
with all DICOM objects or DICOMweb records. See [Known limitations for details](#known-limitations).
12
12
13
13
I'm still trying to figure out what is the most useful way of using this plugin. Please feel free to try it out,
14
14
send feedback in [Discussions](https://github.com/realcundo/nu_plugin_dcm/discussions) or report problems in [Issues](https://github.com/realcundo/nu_plugin_dcm/issues).
15
15
16
16
## Usage
17
17
`dcm` plugin reads its input from single values, or from list of values:
18
-
-`dcm`: expects a string/filename, file record (must contain `name` and `type`), dicomweb record, or binary DICOM data
18
+
-`dcm`: expects a string/filename, file record (must contain `name` and `type`), DICOMweb record, or binary DICOM data
19
19
-`ls *.dcm | dcm`: process a list of files, resulting in a list of dicom records
20
20
-`ls *.dcm | select name type | dcm`: process a list of files specified by their filename, resulting in a list of dicom records
21
21
-`open --raw file.dcm | into binary | dcm`: process a binary stream, resulting in a dicom record
@@ -40,8 +40,8 @@ See Examples for more details.
40
40
```
41
41
42
42
Without `into binary`, `dcm` would see a list of strings, assuming it's a list of filenames.
43
-
- For dicomweb inputs, only the first of "Alphabetic", "Ideographic", "Phonetic" Patient Names is extracted.
44
-
- For dicomweb inputs, `BulkDataURI` and `InlineBinary` are not extracted and `nothing` is returned as their values.
43
+
- For DICOMweb inputs, only the first of "Alphabetic", "Ideographic", "Phonetic" Patient Names is extracted.
44
+
- For DICOMweb inputs, `BulkDataURI` and `InlineBinary` are not extracted and `nothing` is returned as their values.
0 commit comments