Build pipeline: viash-hub.biobox.main-7dwhr
Source commit: da414e72c6
Source message: Add star solo component (#62)
* add star solo component
* change arguments from camelCase to snake_case
* get rid of multiple_sep
* drop star_solo component and just add arguments to star_align_reads
* Update src/star/star_align_reads/script.py
Co-authored-by: Dries Schaumont <5946712+DriesSchaumont@users.noreply.github.com>
---------
Co-authored-by: Dries Schaumont <5946712+DriesSchaumont@users.noreply.github.com>
16 lines
345 B
Bash
16 lines
345 B
Bash
#!/bin/bash
|
|
|
|
## VIASH START
|
|
## VIASH END
|
|
|
|
[[ "$par_tab" == "false" ]] && unset par_tab
|
|
[[ "$par_strand_aware" == "false" ]] && unset par_strand_aware
|
|
|
|
seqtk subseq \
|
|
${par_tab:+-t} \
|
|
${par_strand_aware:+-s} \
|
|
${par_sequence_line_length:+-l "$par_sequence_line_length"} \
|
|
"$par_input" \
|
|
"$par_name_list" \
|
|
> "$par_output"
|