Skip to content

Commit

Permalink
remove unused cp rules
Browse files Browse the repository at this point in the history
  • Loading branch information
akhanf committed Jan 6, 2025
1 parent 9523190 commit 698d913
Showing 1 changed file with 0 additions and 57 deletions.
57 changes: 0 additions & 57 deletions hippunfold/workflow/rules/native_surf.smk
Original file line number Diff line number Diff line change
Expand Up @@ -1350,35 +1350,6 @@ rule resample_native_metric_to_std_density:
shell:
"wb_command -metric-resample {input.native_metric} {input.native_unfold} {input.ref_unfold} BARYCENTRIC {output.metric_resampled} -bypass-sphere-check"

"""
rule cp_surf_to_root:
input:
native_resampled=bids(
root=work,
datatype="surf",
suffix="{surf_name}.surf.gii",
space="{space}",
den="{density}",
hemi="{hemi}",
label="{label}",
**inputs.subj_wildcards,
),
output:
native_resampled=bids(
root=root,
datatype="surf",
suffix="{surf_name,midthickness}.surf.gii",
space="{space}",
den="{density}",
hemi="{hemi}",
label="{label}",
**inputs.subj_wildcards,
),
group: 'subj'
shell:
"cp {input} {output}"
"""


# --- resampling from atlasnative to native vertices
rule resample_atlas_subfields_to_native_surf:
Expand Down Expand Up @@ -1722,31 +1693,3 @@ rule create_spec_file_dentate_native:
"subj"
shell:
"{params.cmds}"


"""
rule cp_native_surf_to_root:
input:
native=bids(
root=work,
datatype="surf",
suffix="{surf_name}.surf.gii",
space="{space}",
hemi="{hemi}",
label="{label}",
**inputs.subj_wildcards,
),
output:
native=bids(
root=root,
datatype="surf",
suffix="{surf_name}.surf.gii",
space="{space}",
hemi="{hemi}",
label="{label}",
**inputs.subj_wildcards,
),
group: 'subj'
shell:
"cp {input} {output}"
"""

0 comments on commit 698d913

Please sign in to comment.