DCAN-Labs / abcd-hcp-pipeline

bids application for processing functional MRI data, robust to scanner, acquisition and age variability.
https://hub.docker.com/r/dcanumn/abcd-hcp-pipeline
BSD 3-Clause "New" or "Revised" License
50 stars 19 forks source link

Add --session-id option #54

Closed madisoth closed 2 years ago

madisoth commented 2 years ago

Adds '--session-id' option, analogous to the 'session-id' option already implemented in nhp-abcd-bids-pipeline and infant-abcd-bids-pipeline. Users may now filter input to be processed with a list of BIDS session IDs.

    parser.add_argument(
        '--session-id', dest='session_list', nargs='*',
        metavar='LABEL',
        help='filter input dataset by session id. Default is all ids '
             'found under the subject input directory(s).  A session id '
             'does not include "ses-"'
    )