Build branch main with version main (f52978a)
Build pipeline: viash-hub.rnaseq.main-k4ttq
Source commit: f52978a0e2
Source message: Fix summarizedexperiment build (#42)
This commit is contained in:
@@ -90,6 +90,9 @@ info:
|
||||
- "modules/local/cat_additional_fasta.nf"
|
||||
last_sha: "0a1bdcfbb498987643b74e9fccab85ccd9f2a17d"
|
||||
status: "enabled"
|
||||
scope:
|
||||
image: "public"
|
||||
target: "public"
|
||||
requirements:
|
||||
commands:
|
||||
- "ps"
|
||||
@@ -186,15 +189,15 @@ build_info:
|
||||
engine: "docker|native"
|
||||
output: "target/executable/cat_additional_fasta"
|
||||
executable: "target/executable/cat_additional_fasta/cat_additional_fasta"
|
||||
viash_version: "0.9.0"
|
||||
git_commit: "2b3d511b34246648b934fd1dc99b22e0a71c37f2"
|
||||
git_remote: "https://x-access-token:ghs_mpjpezoXRPhvITbEzvFPaxzcp8yfML2ITu9P@github.com/viash-hub/rnaseq"
|
||||
viash_version: "0.9.2"
|
||||
git_commit: "f52978a0e25cae182b7874b4b8aa3afc183e880e"
|
||||
git_remote: "https://github.com/viash-hub/rnaseq"
|
||||
package_config:
|
||||
name: "rnaseq"
|
||||
version: "main"
|
||||
info:
|
||||
test_resources:
|
||||
- path: "gs://viash-hub-test-data/rnaseq/v1"
|
||||
- path: "gs://viash-hub-resources/rnaseq/v1"
|
||||
dest: "testData"
|
||||
repositories:
|
||||
- type: "vsh"
|
||||
@@ -205,7 +208,7 @@ package_config:
|
||||
name: "craftbox"
|
||||
repo: "craftbox"
|
||||
tag: "v0.1.0"
|
||||
viash_version: "0.9.0"
|
||||
viash_version: "0.9.2"
|
||||
source: "src"
|
||||
target: "target"
|
||||
config_mods:
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# cat_additional_fasta main
|
||||
#
|
||||
# This wrapper script is auto-generated by viash 0.9.0 and is thus a derivative
|
||||
# This wrapper script is auto-generated by viash 0.9.2 and is thus a derivative
|
||||
# work thereof. This software comes with ABSOLUTELY NO WARRANTY from Data
|
||||
# Intuitive.
|
||||
#
|
||||
@@ -169,40 +169,6 @@ VIASH_META_CONFIG="$VIASH_META_RESOURCES_DIR/.config.vsh.yaml"
|
||||
VIASH_META_TEMP_DIR="$VIASH_TEMP"
|
||||
|
||||
|
||||
# ViashHelp: Display helpful explanation about this executable
|
||||
function ViashHelp {
|
||||
echo "cat_additional_fasta main"
|
||||
echo ""
|
||||
echo "Concatenate addional fasta file to reference FASTA and GTF files."
|
||||
echo ""
|
||||
echo "Input:"
|
||||
echo " --fasta"
|
||||
echo " type: file, required parameter, file must exist"
|
||||
echo " Path to FASTA genome file."
|
||||
echo ""
|
||||
echo " --gtf"
|
||||
echo " type: file, file must exist"
|
||||
echo " Path to GTF annotation file."
|
||||
echo ""
|
||||
echo " --additional_fasta"
|
||||
echo " type: file, file must exist"
|
||||
echo " FASTA file to concatenate to genome FASTA file e.g. containing spike-in"
|
||||
echo " sequences."
|
||||
echo ""
|
||||
echo " --biotype"
|
||||
echo " type: string"
|
||||
echo " Biotype value to use when appending entries to GTF file when additional"
|
||||
echo " fasta file is provided."
|
||||
echo ""
|
||||
echo "Output:"
|
||||
echo " --fasta_output"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " Concatenated FASTA file."
|
||||
echo ""
|
||||
echo " --gtf_output"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " Concatenated GTF file."
|
||||
}
|
||||
|
||||
# initialise variables
|
||||
VIASH_MODE='run'
|
||||
@@ -480,9 +446,9 @@ function ViashDockerfile {
|
||||
FROM python:latest
|
||||
ENTRYPOINT []
|
||||
LABEL org.opencontainers.image.description="Companion container for running component cat_additional_fasta"
|
||||
LABEL org.opencontainers.image.created="2024-12-05T14:40:11Z"
|
||||
LABEL org.opencontainers.image.source="https://x-access-token/ghs_mpjpezoXRPhvITbEzvFPaxzcp8yfML2ITu9P@github.com/viash-hub/rnaseq"
|
||||
LABEL org.opencontainers.image.revision="2b3d511b34246648b934fd1dc99b22e0a71c37f2"
|
||||
LABEL org.opencontainers.image.created="2025-05-06T19:18:34Z"
|
||||
LABEL org.opencontainers.image.source="https://github.com/viash-hub/rnaseq"
|
||||
LABEL org.opencontainers.image.revision="f52978a0e25cae182b7874b4b8aa3afc183e880e"
|
||||
LABEL org.opencontainers.image.version="main"
|
||||
|
||||
VIASHDOCKER
|
||||
@@ -597,6 +563,66 @@ fi
|
||||
# initialise docker variables
|
||||
VIASH_DOCKER_RUN_ARGS=(-i --rm)
|
||||
|
||||
|
||||
# ViashHelp: Display helpful explanation about this executable
|
||||
function ViashHelp {
|
||||
echo "cat_additional_fasta main"
|
||||
echo ""
|
||||
echo "Concatenate addional fasta file to reference FASTA and GTF files."
|
||||
echo ""
|
||||
echo "Input:"
|
||||
echo " --fasta"
|
||||
echo " type: file, required parameter, file must exist"
|
||||
echo " Path to FASTA genome file."
|
||||
echo ""
|
||||
echo " --gtf"
|
||||
echo " type: file, file must exist"
|
||||
echo " Path to GTF annotation file."
|
||||
echo ""
|
||||
echo " --additional_fasta"
|
||||
echo " type: file, file must exist"
|
||||
echo " FASTA file to concatenate to genome FASTA file e.g. containing spike-in"
|
||||
echo " sequences."
|
||||
echo ""
|
||||
echo " --biotype"
|
||||
echo " type: string"
|
||||
echo " Biotype value to use when appending entries to GTF file when additional"
|
||||
echo " fasta file is provided."
|
||||
echo ""
|
||||
echo "Output:"
|
||||
echo " --fasta_output"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " Concatenated FASTA file."
|
||||
echo ""
|
||||
echo " --gtf_output"
|
||||
echo " type: file, output, file must exist"
|
||||
echo " Concatenated GTF file."
|
||||
echo ""
|
||||
echo "Viash built in Computational Requirements:"
|
||||
echo " ---cpus=INT"
|
||||
echo " Number of CPUs to use"
|
||||
echo " ---memory=STRING"
|
||||
echo " Amount of memory to use. Examples: 4GB, 3MiB."
|
||||
echo ""
|
||||
echo "Viash built in Docker:"
|
||||
echo " ---setup=STRATEGY"
|
||||
echo " Setup the docker container. Options are: alwaysbuild, alwayscachedbuild, ifneedbebuild, ifneedbecachedbuild, alwayspull, alwayspullelsebuild, alwayspullelsecachedbuild, ifneedbepull, ifneedbepullelsebuild, ifneedbepullelsecachedbuild, push, pushifnotpresent, donothing."
|
||||
echo " Default: ifneedbepullelsecachedbuild"
|
||||
echo " ---dockerfile"
|
||||
echo " Print the dockerfile to stdout."
|
||||
echo " ---docker_run_args=ARG"
|
||||
echo " Provide runtime arguments to Docker. See the documentation on \`docker run\` for more information."
|
||||
echo " ---docker_image_id"
|
||||
echo " Print the docker image id to stdout."
|
||||
echo " ---debug"
|
||||
echo " Enter the docker container for debugging purposes."
|
||||
echo ""
|
||||
echo "Viash built in Engines:"
|
||||
echo " ---engine=ENGINE_ID"
|
||||
echo " Specify the engine to use. Options are: docker, native."
|
||||
echo " Default: docker"
|
||||
}
|
||||
|
||||
# initialise array
|
||||
VIASH_POSITIONAL_ARGS=''
|
||||
|
||||
|
||||
Reference in New Issue
Block a user