Hi Grace,
Unfortunately, DicomBrowser does not handle sequence items. We are working on an upgrade for this, but progress is slow due to lack of developer resources.
You can do what you want with an XNAT tool called DicomEdit6. This is a library but it can be invoked from the command-line tool that allows one to specify desired modifications in an "anonymization script". The syntax for this scripting language is at
https://wiki.xnat.org/display/XTOOLS/DicomEdit+6.2+Language+Reference. This is an extension of the scripting language available in DicomBrowser (DicomEdit v3). DicomEdit v6 will make it into DicomBrowser eventually, but not yet.
java -jar dicom-edit6-1.0.8-SNAPSHOT-jar-with-dependencies.jar
This will provide the usage info:
haven:bin drm$ java -jar dicom-edit6-1.0.8-SNAPSHOT-jar-with-dependencies.jar
No scripts were specified.
anon -s <script-file>[,<lookup-file>] [-s <script-file>[,<lookup-file> ...] -i <path to input dicom file or dir> -o <path to output dir>
Scripts will be processed in the order specified.
Each script may optionally reference a lookup table.
You would likely run it as:
java -jar dicom-edit6-1.0.8-SNAPSHOT-jar-with-dependencies.jar -s <your-script-file> -i <path to input dicom file or dir> -o <path to output dir>
If you wanted to remove the sequence element entirely, <your-script-file> would have contents:
version "6.2"
- (0010,1002)
It also provides the ability to alter DICOM by applying statements from a script written in CTP's syntax.