Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/local/baysor/create_dataset/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ process BAYSOR_CREATE_DATASET {
prefix = task.ext.prefix ?: "${meta.id}"

"""
create_dataset.py \\
python3 ${moduleDir}/templates/create_dataset.py \\
--transcripts ${transcripts} \\
--sample-fraction ${sample_fraction} \\
--prefix ${prefix}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/baysor/preprocess/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ process BAYSOR_PREPROCESS_TRANSCRIPTS {
prefix = task.ext.prefix ?: "${meta.id}"

"""
preprocess_transcripts.py \\
python3 ${moduleDir}/templates/preprocess_transcripts.py \\
--transcripts ${transcripts} \\
--prefix ${prefix} \\
--min-qv ${min_qv} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/ficture/preprocess/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ process FICTURE_PREPROCESS {
def features_arg = features ? "--features ${features}" : ""

"""
ficture_preprocess.py \\
python3 ${moduleDir}/templates/ficture_preprocess.py \\
--transcripts ${transcripts} \\
${features_arg} \\
--negative-control-regex '${params.negative_control_regex}' \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/segger/create_dataset/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ process SEGGER_CREATE_DATASET {
export NUMBA_CACHE_DIR=\$PWD/.numba_cache
mkdir -p \$NUMBA_CACHE_DIR

run_create_dataset.py \\
python3 ${moduleDir}/templates/run_create_dataset.py \\
--bundle-dir ${base_dir} \\
--output-dir ${prefix} \\
--sample-type ${params.format} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/segger/predict/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ process SEGGER_PREDICT {
def args = task.ext.args ?: ''
prefix = task.ext.prefix ?: "${meta.id}"
"""
run_predict.py \\
python3 ${moduleDir}/templates/run_predict.py \\
--models-dir ${models_dir} \\
--segger-data-dir ${segger_dataset} \\
--transcripts-file ${transcripts} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/spatialdata/merge/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process SPATIALDATA_MERGE {
prefix = task.ext.prefix ?: "${meta.id}"

"""
spatialdata_merge.py \\
python3 ${moduleDir}/templates/spatialdata_merge.py \\
--raw-bundle ${raw_bundle} \\
--redefined-bundle ${redefined_bundle} \\
--prefix ${prefix} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/spatialdata/meta/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process SPATIALDATA_META {
prefix = task.ext.prefix ?: "${meta.id}"

"""
spatialdata_meta.py \\
python3 ${moduleDir}/templates/spatialdata_meta.py \\
--spatialdata-bundle ${spatialdata_bundle} \\
--xenium-bundle ${xenium_bundle} \\
--prefix ${prefix} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/spatialdata/write/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ process SPATIALDATA_WRITE {
prefix = task.ext.prefix ?: "${meta.id}"

"""
spatialdata_write.py \\
python3 ${moduleDir}/templates/spatialdata_write.py \\
--bundle ${bundle} \\
--prefix ${prefix} \\
--output-folder ${outputfolder} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/convert_mask_uint32/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ process CONVERT_MASK_UINT32 {
script:
prefix = task.ext.prefix ?: "${meta.id}"
"""
convert_mask_uint32.py \\
python3 ${moduleDir}/templates/convert_mask_uint32.py \\
--input ${mask} \\
--output ${prefix}_uint32_mask.tif
"""
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/downscale_morphology/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ process DOWNSCALE_MORPHOLOGY {
def diam_mean = 30
prefix = task.ext.prefix ?: "${meta.id}"
"""
downscale_morphology.py \\
python3 ${moduleDir}/templates/downscale_morphology.py \\
--image ${image} \\
--diameter ${diameter} \\
--diam-mean ${diam_mean} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/extract_dapi/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ process EXTRACT_DAPI {
prefix = task.ext.prefix ?: "${meta.id}"
def channel_index = task.ext.channel_index ?: 0
"""
extract_dapi.py \\
python3 ${moduleDir}/templates/extract_dapi.py \\
--input ${image} \\
--output ${prefix}_dapi.tif \\
--channel-index ${channel_index}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/extract_preview_data/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process EXTRACT_PREVIEW_DATA {
prefix = task.ext.prefix ?: "${meta.id}"

"""
extract_data.py \\
python3 ${moduleDir}/templates/extract_data.py \\
--preview-html ${preview_html} \\
--prefix ${prefix}
"""
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/get_coordinates/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ process GET_TRANSCRIPTS_COORDINATES {
prefix = task.ext.prefix ?: "${meta.id}"

"""
get_coordinates.py \\
python3 ${moduleDir}/templates/get_coordinates.py \\
--transcripts ${transcripts}
"""

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/parquet_to_csv/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ process PARQUET_TO_CSV {
prefix = task.ext.prefix ?: "${meta.id}"

"""
parquet_to_csv.py \\
python3 ${moduleDir}/templates/parquet_to_csv.py \\
--transcripts ${transcripts} \\
--extension ${extension} \\
--prefix ${prefix}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/resize_tif/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process RESIZE_TIF {
prefix = task.ext.prefix ?: "${meta.id}"

"""
resize_tif.py \\
python3 ${moduleDir}/templates/resize_tif.py \\
--mask ${mask} \\
--transcripts ${transcripts} \\
--metadata ${metadata} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/segger2xr/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ process SEGGER2XR {
def min_transcripts = task.ext.min_transcripts_per_cell ?: 3

"""
segger2xr.py \\
python3 ${moduleDir}/templates/segger2xr.py \\
--transcripts ${transcripts} \\
--prefix ${meta.id} \\
--min-transcripts ${min_transcripts}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/split_transcripts/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ process SPLIT_TRANSCRIPTS {
def prefix = task.ext.prefix ?: "${meta.id}"

"""
split_transcripts.py \\
python3 ${moduleDir}/templates/split_transcripts.py \\
--transcripts ${transcripts} \\
--x-bins ${x_bins} \\
--y-bins ${y_bins} \\
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion modules/local/utility/upscale_mask/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ process UPSCALE_MASK {
script:
prefix = task.ext.prefix ?: "${meta.id}"
"""
upscale_mask.py \\
python3 ${moduleDir}/templates/upscale_mask.py \\
--mask ${mask} \\
--scale-info ${scale_info} \\
--prefix ${prefix}
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions modules/local/xenium_patch/stitch/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ process XENIUM_PATCH_STITCH {
script:
def args = task.ext.args ?: ''
"""
stitch_transcripts.py \\
python3 ${moduleDir}/templates/stitch_transcripts.py \\
--patches ${patches} \\
--output output \\
${args}

# Post-process: ensure all GeoJSON geometries are Polygon and
# reconcile dropped cells in the transcript CSV.
stitch_postprocess.py \\
python3 ${moduleDir}/templates/stitch_postprocess.py \\
--geojson output/xr-cell-polygons.geojson \\
--csv output/xr-transcript-metadata.csv
"""
Expand Down
File renamed without changes.
File renamed without changes.
Loading