.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "RSEM-CONTROL-FDR 1" .TH RSEM-CONTROL-FDR 1 2024-03-24 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME rsem\-control\-fdr \- Filter EBSeq output for statistical significance. .SH SYNOPSIS .IX Header "SYNOPSIS" rsem-control-fdr [options] input_file fdr_rate output_file .SH ARGUMENTS .IX Header "ARGUMENTS" .IP \fBinput_file\fR 4 .IX Item "input_file" This should be the main result file generated by 'rsem\-run\-ebseq', which contains all genes/transcripts and their associated statistics. .IP \fBfdr_rate\fR 4 .IX Item "fdr_rate" The desire false discovery rate (FDR). .IP \fBoutput_file\fR 4 .IX Item "output_file" This file is a subset of the 'input_file'. It only contains the genes/transcripts called as differentially expressed (DE). When more than 2 conditions exist, DE is defined as not all conditions are equally expressed. Because statistical significance does not necessarily mean biological significance, users should also refer to the fold changes to decide which genes/transcripts are biologically significant. When more than two conditions exist, this file will not contain fold change information and users need to calculate it from 'input_file.condmeans' by themselves. .SH OPTIONS .IX Header "OPTIONS" .IP \fB\-\-hard\-threshold\fR 4 .IX Item "--hard-threshold" Use hard threshold method to control FDR. If this option is set, only those genes/transcripts with their PPDE >= 1 \- fdr_rate are called as DE. (Default: on) .IP \fB\-\-soft\-threshold\fR 4 .IX Item "--soft-threshold" Use soft threshold method to control FDR. If this option is set, this program will try to report as many genes/transcripts as possible, as long as their average PPDE >= 1 \- fdr_rate. This option is equivalent to use EBSeq's 'crit_fun' for FDR control. (Default: off) .IP \fB\-h/\-\-help\fR 4 .IX Item "-h/--help" Show help information. .SH DESCRIPTION .IX Header "DESCRIPTION" This program controls the false discovery rate and reports differentially expressed genes/transcripts. .SH EXAMPLES .IX Header "EXAMPLES" We assume that we have 'GeneMat.results' as input. We want to control FDR at 0.05 using hard threshold method and name the output file as 'GeneMat.de.txt': .PP .Vb 1 \& rsem\-control\-fdr GeneMat.results 0.05 GeneMat.de.txt .Ve