Skip to content

Commit

Permalink
set multiple true
Browse files Browse the repository at this point in the history
  • Loading branch information
sainirmayi committed Aug 8, 2024
1 parent e3b5fd6 commit 9a60c6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/rsem/rsem_prepare_reference/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,17 @@ argument_groups:
example: annotations.gff
- name: --gff3_rna_patterns
type: string
description: Comma-separated list of transcript categories, e.g. "mRNA,rRNA". Only transcripts that match the string will be extracted.
example: mRNA,rRNA
description: List of transcript categories (separated by semi-colon). Only transcripts that match the string will be extracted.
multiple: true
example: mRNA;rRNA
- name: --gff3_genes_as_transcripts
type: boolean_true
description: This option is designed for untypical organisms, such as viruses, whose GFF3 files only contain genes. RSEM will assume each gene as a unique transcript when it converts the GFF3 file into GTF format.
- name: --trusted_sources
type: string
description: Comma-separated list of trusted sources, e.g. "ENSEMBL,HAVANA". Only transcripts coming from these sources will be extracted. If this option is off, all sources are accepted.
example: ENSEMBL,HAVANA
description: List of trusted sources (separated by semi-colon). Only transcripts coming from these sources will be extracted. If this option is off, all sources are accepted.
multiple: true
example: ENSEMBL;HAVANA
- name: --transcript_to_gene_map
type: file
description: |
Expand Down
2 changes: 2 additions & 0 deletions src/rsem/rsem_prepare_reference/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ done

# replace ';' with ','
par_reference_fasta_files=$(echo $par_reference_fasta_files | tr ';' ',')
par_gff3_rna_patterns=$(echo $par_gff3_rna_patterns | tr ';' ',')
par_trusted_sources=$(echo $par_trusted_sources | tr ';' ',')

echo "$par_reference_fasta_files"
rsem-prepare-reference \
Expand Down

0 comments on commit 9a60c6c

Please sign in to comment.