from xcp_d.workflows.base import init_subject_wf
from xcp_d.utils.doc import download_example_data

fmri_dir = download_example_data()

wf = init_subject_wf(
    fmri_dir=fmri_dir,
    subject_id="01",
    input_type="fmriprep",
    process_surfaces=False,
    combineruns=False,
    cifti=False,
    task_id="imagery",
    bids_filters=None,
    bandpass_filter=True,
    high_pass=0.01,
    low_pass=0.08,
    bpf_order=2,
    motion_filter_type=None,
    motion_filter_order=4,
    band_stop_min=12,
    band_stop_max=20,
    smoothing=6.,
    head_radius=50,
    params="36P",
    output_dir=".",
    custom_confounds_folder=None,
    dummy_scans=0,
    random_seed=None,
    fd_thresh=0.3,
    despike=True,
    dcan_qc=False,
    min_coverage=0.5,
    min_time=100,
    exact_time=[],
    omp_nthreads=1,
    layout=None,
    name="single_subject_sub-01_wf",
)