# HG changeset patch # User Jim Johnson # Date 1418679118 21600 # Node ID 45e094f8858f798cc80f303d48e8ebbc7d049580 # Parent 0476ee45d25337aa27e2c78da9a73e7edac83128 Add SitePro tool diff -r 0476ee45d253 -r 45e094f8858f sitepro.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sitepro.xml Mon Dec 15 15:31:58 2014 -0600 @@ -0,0 +1,171 @@ + + Draw the score profile near a given interval + + ceas_macros.xml + + + +sitepro +#if $mode.mode_select == "single" + -w $mode.wfile -b $mode.bfile +#elif $mode.mode_select == "multiwig" + -w $mode.wfile -l $mode.label + #for $m in $mode.more + -w "$m.wig" -l "$m.label" + #end for + -b $mode.bfile +#elif $mode.mode_select == "multibed" + -w $mode.wfile -b $mode.bfile -l $mode.label + #for $m in $mode.more + -b "$m.bfile" -l "$m.label" + #end for +#end if +--span=$span --pf-res=$pfres --name=$name --dump &> $log +cat *_dump.txt > $dump + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +This tool draws the average score profile around given genomic +sites. It's a module in CEAS package which is written by Hyunjin Gene +Shin, published in Bioinformatics (pubmed id:19689956). + +.. class:: infomark + +**TIP #1:** If your query does not apper in the pulldown menu for BED Files, please convert your interval files to BED format. + +.. class:: infomark + +**TIP #2:** You can't use multiple BED files *AND* multiple Wiggle files as input. + +.. class:: infomark + +**TIP #3:** The tool can be used to check the signals of your ChIP +sample around certain regions such as Transcription Start Sites, or +Transcription Factor Binding Sites. + +.. class:: warningmark + +**NEED IMPROVEMENT** + +----- + +**Parameters** + +- **Sitepro behaviour mode** can only be '1 wiggle file against 1 BED + file', or 'multiple wiggle files against 1 BED file', or '1 wiggle + file against multiple BED files'. +- **Wiggle label** When 'multi wiggle' mode is selected, you need to assign the labels for every wiggle files which will be shown in the final figure. +- **BED label** When 'multi BED' mode is selected, you need to assign the labels for every BED files which will be shown in the final image. +- **Span** is the distance from the center of each BED region in both directions(+/-) (eg, [c - span, c + span], where c is the center of a region). +- **Profiling resolution** is the resolution to bin the scores in the final image. + +----- + +**script parameter list of Sitepro** + +Options: + --version show program's version number and exit + -h, --help Show this help message and exit. + -w WIG, --wig=WIG input WIG file. WARNING: both fixedStep and + variableStep WIG formats are accepted. Multiple WIG + files can be given via -w (--wig) individually (eg -w + WIG1.wig, -w WIG2.wig). WARNING! multiple wig and bed + files are not allowed. + -b BED, --bed=BED BED file of regions of interest. (eg, binding sites or + motif locations) Multiple BED files can be given via + -b (--bed) individually (eg -b BED1.bed -b BED2.bed). + WARNING! multiple wig and bed files are not allowed. + --span=SPAN Span from the center of each BED region in both + directions(+/-) (eg, [c - span, c + span], where c is + the center of a region), default:1000 bp + --pf-res=PF_RES Profiling resolution, default: 50 bp + --dir If set, the direction (+/-) is considered in + profiling. If no strand info given in the BED, this + option is ignored. + --dump If set, profiles are dumped as a TXT file + --name=NAME Name of this run. If not given, the body of the bed + file name will be used, + -l LABEL, --label=LABEL + Labels of the wig files. If given, they are used as + the legends of the plot and in naming the TXT files of + profile dumps; otherwise, the WIG file names will be + used as the labels. Multiple labels can be given via + -l (--label) individually (eg, -l LABEL1 -l LABEL2). + WARNING! The number and order of the labels must be + the same as the WIG files. + +----- + +**Output** + +- **PDF** format file. +- Dumped signals within given intervals in **plain text**. + + + +