# HG changeset patch # User mvdbeek # Date 1434917096 14400 # Node ID 46405fd09d06fc21c574c659087cf27790084a52 # Parent d2a220e64a1cb9bbea76d10e9359e55e0bf72aa8 planemo upload for repository https://bitbucket.org/drosofff/gedtools/ diff -r d2a220e64a1c -r 46405fd09d06 signature.xml --- a/signature.xml Thu May 21 10:37:00 2015 -0400 +++ b/signature.xml Sun Jun 21 16:04:56 2015 -0400 @@ -1,13 +1,12 @@ - + bowtie samtools pysam + R biocbasics - R numpy - scipy signature.py diff -r d2a220e64a1c -r 46405fd09d06 smRtools.py --- a/smRtools.py Thu May 21 10:37:00 2015 -0400 +++ b/smRtools.py Sun Jun 21 16:04:56 2015 -0400 @@ -4,7 +4,8 @@ import sys, subprocess from collections import defaultdict from numpy import mean, median, std -from scipy import stats +##Disable scipy import temporarily, as no working scipy on toolshed. +##from scipy import stats def get_fasta (index="/home/galaxy/galaxy-dist/bowtie/5.37_Dmel/5.37_Dmel"): '''This function will return a dictionary containing fasta identifiers as keys and the @@ -273,6 +274,8 @@ def correlation_mapper (self, reference, window_size): '''to map correlation with a sliding window 26-2-2013''' + from scipy import stats + if window_size > self.size: return [] F=open(reference, "r") diff -r d2a220e64a1c -r 46405fd09d06 tool_dependencies.xml --- a/tool_dependencies.xml Thu May 21 10:37:00 2015 -0400 +++ b/tool_dependencies.xml Sun Jun 21 16:04:56 2015 -0400 @@ -9,36 +9,10 @@ - - + + - - - - - - - - $INSTALL_DIR - echo "bioclite=\"http://bioconductor.org/biocLite.R\"" > $INSTALL_DIR/runme.R - echo "source(bioclite)" >> $INSTALL_DIR/runme.R - echo "installme=c(\"lattice\")" >> $INSTALL_DIR/runme.R - echo "biocLite()" >> $INSTALL_DIR/runme.R - echo "biocLite(installme)" >> $INSTALL_DIR/runme.R - echo "quit(save=\"no\")" >> $INSTALL_DIR/runme.R - export PATH=$PATH && R CMD BATCH $INSTALL_DIR/runme.R - - - - - - - - - Installs some basic bioc packages for the lattice wrapper for managing lattice panels - It's clunky but this is the most convenient way iuc could get anything installed into the package_r3 - Note we use cran at fred hutch since no fastest mirror thingy - +