# HG changeset patch # User timpalpant # Date 1339787253 14400 # Node ID b2a69d34385aec30de5601600fa23b373f8e465d # Parent ace7855c10172f6055e7550c7fa4fe35d4bd6ab6 Performance improvements to Wig file checksumming. Bug fix in Autocorrelation tool. diff -r ace7855c1017 -r b2a69d34385a dist/java-genomics-toolkit.jar Binary file dist/java-genomics-toolkit.jar has changed diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/._IntervalToBed.xml Binary file galaxy-conf/._IntervalToBed.xml has changed diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/._IntervalToWig.xml Binary file galaxy-conf/._IntervalToWig.xml has changed diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/._PredictFAIRESignal.xml Binary file galaxy-conf/._PredictFAIRESignal.xml has changed diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/IntervalToBed.xml --- a/galaxy-conf/IntervalToBed.xml Sat Jun 09 16:10:42 2012 -0400 +++ b/galaxy-conf/IntervalToBed.xml Fri Jun 15 15:07:33 2012 -0400 @@ -1,15 +1,19 @@ - + converter galaxyToolRunner.sh converters.IntervalToBed -i $input -o $output - + -This tool will convert any file in SAM, BAM, GFF, BedGraph, or BigBed format to Bed format. +This tool will convert any file in SAM, BAM, GFF, BedGraph, BigBed, or VCF format to Bed format. + +.. class:: warningmark + +For SAM/BAM data, paired-end reads are converted to Bed format as the entire fragment (5' end of mate 1 to the 5' end of mate 2). Single-end reads are converted to Bed format as the read itself, with strand information. If your SAM/BAM file contains both mate alignments from a paired-end sequencing run (i.e. two entries for each fragment), you should first filter out reads from either the + or - strand with the SAM Tools -> Filter SAM tool to avoid producing redundant entries in the output Bed file. diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/IntervalToWig.xml --- a/galaxy-conf/IntervalToWig.xml Sat Jun 09 16:10:42 2012 -0400 +++ b/galaxy-conf/IntervalToWig.xml Fri Jun 15 15:07:33 2012 -0400 @@ -1,4 +1,4 @@ - + converter galaxyToolRunner.sh converters.IntervalToWig -i $input $zero -a ${chromInfo} -o $output diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/PairOverlappingNucleosomes.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/galaxy-conf/PairOverlappingNucleosomes.xml Fri Jun 15 15:07:33 2012 -0400 @@ -0,0 +1,18 @@ + + by overlap + galaxyToolRunner.sh nucleosomes.PairOverlappingNucleosomes -a $input1 -b $input2 -m $N -o $output + + + + + + + + + + + +This tool will pair overlapping nucleosomes from two sets of nucleosome calls. In the event that multiple calls overlap, the one with the largest overlap is selected as a match. + + + diff -r ace7855c1017 -r b2a69d34385a galaxy-conf/PredictFAIRESignal.xml --- a/galaxy-conf/PredictFAIRESignal.xml Sat Jun 09 16:10:42 2012 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ - - from nucleosome occupancy - galaxyToolRunner.sh nucleosomes.PredictFAIRESignal -i $input -s $sonication -c $crosslinking -x $extend -o $output - - - - - - - - - - - - -This tool attempts to predict FAIRE signal from nucleosome occupancy by calculating the probability that a random sonicated fragment is occupied anywhere by a nucleosome. - ------ - -**Syntax** - -- **Nucleosome occupancy data** should be fragment coverage data from an MNase-seq experiment -- **Sonication fragment length distribution:** The relative proportion of each size of fragment produced by sonication -- **Crosslinking coefficient** is the efficiency of crosslinking (what fraction of the time is a nucleosome crosslinked) -- **In silico read extension** is the length that single-end reads should be extended to match FAIRE-seq data - ------ - -Sonication fragment distribution must be provided in the following tabular format :: - - length proportion - -So for example :: - - 1 0.1 - 2 0.2 - 3 0.3 - 4 0.2 - 5 0.2 - - - diff -r ace7855c1017 -r b2a69d34385a lib/java-genomics-io.jar Binary file lib/java-genomics-io.jar has changed