# HG changeset patch # User devteam # Date 1393392554 18000 # Node ID b7f09b994fd0b0864c61e3fa943eaa0ac221319a # Parent 5a39cfd995b35d0eab43aff013a8e2fdc6d4e4df Uploaded diff -r 5a39cfd995b3 -r b7f09b994fd0 picard_MeanQualityByCycle.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/picard_MeanQualityByCycle.xml Wed Feb 26 00:29:14 2014 -0500 @@ -0,0 +1,57 @@ + +Calculates mean quality by cycle +picard + + picard_wrapper.py -i "${input_file}" -d "${html_file.files_path}" -t "${html_file}" + -n "${out_prefix}" --tmpdir "${__new_file_path__}" --assumesorted ${ASSUME_SORTED} + --pfreadsonly ${PF_READS_ONLY} --alignedreadsonly ${ALIGNED_READS_ONLY} + -j "\$JAVA_JAR_PATH/MeanQualityByCycle.jar" + + + + + + + + + + + + + + + + + + + + + + + +Picard documentation says: + + +MeanQualityByCycle + +Usage: program [options...] + +Option Description +CHART_OUTPUT=File A file (with .pdf extension) to write the chart to. Required. +ALIGNED_READS_ONLY=Boolean If set to true, calculate mean quality over aligned reads only. Default value: false. This option can be set to 'null' to clear the default value. Possible values: {true, false} +PF_READS_ONLY=Boolean If set to true calculate mean quality over PF reads only. Default value: false. This option can be set to 'null' to clear the default value. Possible values: {true, false} +INPUT=File Input SAM or BAM file. Required. +OUTPUT=File File to write the output to. Required. +REFERENCE_SEQUENCE=File Reference sequence fasta Default value: null. // Actually, this does not seem to be used anywhere in the tool -- so we removed it +ASSUME_SORTED=Boolean If true (default), then the sort order in the header file will be ignored. Default value: true. This option can be set to 'null' to clear the default value. Possible values: {true, false} +STOP_AFTER=Long Stop after processing N reads, mainly for debugging. Default value: 0. This option can be set to 'null' to clear the default value. + + + +