Description
Quantify gene expression for subsequent testing for differential expression.
This script takes one or more alignment files in SAM/BAM format and a feature file in GFF format and calculates for each feature the number of reads mapping to it.
See http://htseq.readthedocs.io/en/master/count.html for details.
Run the following command to execute this component with Nextflow:
cat > params.yaml <<'EOM'
output: "$id.$key.output.tsv"
output_sam: "$id.$key.output_sam._*.BAM"
order: [ "name" ]
stranded: [ "yes" ]
minimum_alignment_quality: [ 10 ]
mode: [ "union" ]
non_unique: [ "none" ]
id: "run"
publish_dir: "output/"
EOM
nextflow run https://packages.viash-hub.com/vsh/openpipeline.git \
-revision v3.0.1 \
-main-script target/nextflow/mapping/htseq_count/main.nf \
-params-file params.yaml Name | Type & Properties |
|---|---|
--input | file required multiple |
--reference | file required |
Name | Type & Properties |
|---|---|
--output | file required output |
--output_delimiter | string |
--output_sam | file multiple output |
--output_sam_format | string |
Name | Type & Properties |
|---|---|
--order -r | string |
--stranded -s | string |
--minimum_alignment_quality -a --minaqual | integer |
--type -t | string |
--id_attribute -i | string multiple |
--additional_attributes | string multiple |
--add_chromosome_info | boolean_true |
--mode -m | string |
--non_unique | string |
--secondary_alignments | string |
--supplementary_alignments | string |
--counts_output_sparse | boolean_true |