changeset 4:41db874eced0 draft

Deleted selected files
author alperkucukural
date Mon, 02 Nov 2015 21:19:30 -0500
parents 60666225371c
children 891408eaa9f0
files CRISPRSeek/CRISPRSeek/.shed.yml CRISPRSeek/CRISPRSeek/compare2sequences.xml CRISPRSeek/CRISPRSeek/crisprseek_macros.xml CRISPRSeek/CRISPRSeek/offtargetanalysis.xml CRISPRSeek/CRISPRSeek/tool_dependencies.xml
diffstat 5 files changed, 0 insertions(+), 337 deletions(-) [+]
line wrap: on
line diff
--- a/CRISPRSeek/CRISPRSeek/.shed.yml	Mon Nov 02 21:19:01 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-categories: [Sequence Analysis]
-description: CRISPRseek Bioconductor package
-homepage_url: http://www.bioconductor.org/packages/release/bioc/html/CRISPRseek.html
-long_description: The package includes functions to find potential guide RNAs for input target sequences, optionally filter guide RNAs without restriction enzyme cut site, or without paired guide RNAs, genome-wide search for off-targets, score, rank, fetch flank sequence and indicate whether the target and off-targets are located in exon region or not.
-name: crisprseek
-owner: nephantes
--- a/CRISPRSeek/CRISPRSeek/compare2sequences.xml	Mon Nov 02 21:19:01 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,147 +0,0 @@
-<tool id="compare2sequences" name="compare2sequences" version="1.0.0">
-  <description>CRISPRSeek compare2sequences</description>
-    <macros>
-        <import>crisprseek_macros.xml</import>
-    </macros>
-    <expand macro="requirements" />
-    <command detect_errors="exit_code">
-        Rscript "${compare2sequences}"
-    </command>
-    <configfiles>
-        <configfile name="compare2sequences"><![CDATA[
-## code chunk: Load all required libraries quietly
-library(CRISPRseek, quietly=TRUE, warn.conflicts=FALSE,verbose = FALSE)
-
-compare2Sequences("${s1.inputfile}", "${s2.inputfile}", inputNames=c("Seq1", "Seq2"), REpatternFile = system.file('extdata', 'NEBenzymes.fa', package = 'CRISPRseek'), max.mismatch="${maxmismatch}", searchDirection="${a.searchDirection}", findPairedgRNAOnly=${a.fg.fpg_only}, min.gap = "${a.fg.mingap}", max.gap = "${a.fg.maxgap}", gRNA.name.prefix = "gRNA", PAM.size = "${a.PAMsize}", gRNA.size = "${a.gRNAsize}", PAM = "${a.PAM}", PAM.pattern = "${a.PAMPattern}", outputDir, weights="${a.weights}" )
-
-     ]]></configfile>
-    </configfiles>
-  <inputs>
-     <conditional name="s1">
-       <param name="input_source" type="select" label="Select Input File Path" help="Sequence input file path that contains sequences to be searched for potential gRNAs">
-           <option value="history">History</option>
-           <option value="FullPath">Free Text</option>
-           <option value="Fasta">Fasta</option>
-       </param>
-       <when value="FullPath">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input File Path" help="Full path in the cluster"/>
-       </when>
-       <when value="Fasta">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input Fasta Sequence/s" help="Free text fasta sequences"/>
-       </when>
-       <when value="history">
-       <param format="fastq,fa,fasta" name="inputfile" type="data" label="Input File Path" />
-       </when>
-    </conditional>
-     <conditional name="s2">
-       <param name="input_source" type="select" label="Select Input File Path" help="Sequence input file path that contains sequences to be searched for potential gRNAs">
-           <option value="history">History</option>
-           <option value="FullPath">Free Text</option>
-           <option value="Fasta">Fasta</option>
-       </param>
-       <when value="FullPath">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input File Path" help="Full path in the cluster"/>
-       </when>
-       <when value="Fasta">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input Fasta Sequence/s" help="Free text fasta sequences"/>
-       </when>
-       <when value="history">
-       <param format="fastq,fa,fasta" name="inputfile" type="data" label="Input File Path" />
-       </when>
-    </conditional>
-    <param name="maxmismatch" type="text" label="Max Mismatch" value="3" help="Maximum mismatch allowed in off target search, default 3. Warning: will be considerably slower if set > 3"/>
-    <param name="outputdir" type="text"  area="true" size="2x60" label="Output Directory" help="Output directory in the cluster"/>
-    <conditional name="a">
-       <param name="advanced" type="select" label="Advanced Options">
-           <option value="No" selected="True">No</option>
-           <option value="Yes">Yes</option>
-       </param>
-       <when value="Yes">
-          <param name="searchDirection" type="select" label="Search Direction">
-             <option value="both" selected="True">both</option>
-             <option value="1to2">1to2</option>
-             <option value="2to1">2to1</option>
-          </param>
-         <conditional name="fg">
-           <param name="fpg_only" type="select" label="Find Paired gRNA Only" help="Choose whether to only search for paired gRNAs in such an orientation that the first one is on minus strand called reverse gRNA and the second one is on plus strand called forward gRNA. TRUE or FALSE, default FALSE">
-              <option value="FALSE" selected="True">No</option>
-              <option value="TRUE">Yes</option>
-           </param>
-           <when value="True">
-              <param name="mingap" type="text" label="Min Gap" value="0" />
-              <param name="maxgap" type="text" label="Max Gap" value="20" />
-           </when>
-         </conditional>
-         <param name="PAMsize" type="text" label="PAM Size" value="3" help="PAM length, default 3"/>
-         <param name="PAM" type="text" label="PAM" value="NGG" help="PAM sequence after the gRNA, default NGG"/>
-         <param name="PAMPattern" type="text" label="PAM Pattern" value="N[A_p_G]G_d_"  help="Regular expression of protospacer-adjacent motif (PAM), default N[A|G]G$. Please use _p_ for | and _d_ for $ symbols"/>
-         <param name="gRNAsize" type="text" label="gRNA Size" value="20" help="The size of the gRNA, default 20"/>
-         <param name="weights" type="text" area="true" size="5x60" value="0, 0, 0.014, 0, 0, 0.395, 0.317, 0, 0.389, 0.079, 0.445, 0.508, 0.613, 0.851, 0.732, 0.828, 0.615, 0.804, 0.685, 0.583" label="Off Target Weights" help="a numeric vector size of gRNA length, default 0, 0, 0.014, 0, 0, 0.395, 0.317, 0, 0.389, 0.079, 0.445, 0.508, 0.613, 0.851, 0.732, 0.828, 0.615, 0.804, 0.685, 0.583 which is used in Hsu et al., 2013 cited in the reference section"/>
-       </when>
-    </conditional>
-  </inputs>
-  <outputs>
-    <data format="gz" name="output"/>
-  </outputs>
-  <help>
-
-**What it does**
-
-The package includes functions to find potential guide RNAs for input target se-
-quences, optionally filter guide RNAs without restriction enzyme cut site, or with-
-out paired guide RNAs, genome-wide search for off-targets, score, rank, fetch flank se-
-quence and indicate whether the target and off-targets are located in exon region or not. Poten-
-tial guide RNAs are annotated with total score of the top5 and topN off-targets, de-
-tailed topN mismatch sites, restriction enzyme cut sites, and paired guide RNAs.
-
-**Description**
-
-Generate all possible guide RNAs (gRNAs) for two input sequences, or two sets of sequences and generate scores for potential off-targets in the other sequence.
-
-**Usage**
-
-   compare2Sequences(inputFile1Path, inputFile2Path, inputNames=c("Seq1", "Seq2"), format = "fasta", findgRNAsWithREcutOnly = FALSE, searchDirection=c("both","1to2", "2to1"), REpatternFile=system.file("extdata", "NEBenzymes.fa", package = "CRISPRseek"), minREpatternSize = 6, overlap.gRNA.positions = c(17, 18), findPairedgRNAOnly = FALSE, min.gap = 0, max.gap = 20, gRNA.name.prefix = "gRNA", PAM.size = 3, gRNA.size = 20, PAM = "NGG", PAM.pattern = "N[A|G]G$", max.mismatch = 3, outputDir, weights = c(0, 0, 0.014, 0, 0, 0.395, 0.317, 0, 0.389, 0.079, 0.445, 0.508, 0.613, 0.851, 0.732, 0.828, 0.615, 0.804, 0.685, 0.583), overwrite = FALSE)
-
-**Author(s)**
-
-Lihua Julie Zhu and Michael Brodsky Maintainer: julie.zhu@umassmed.edu
-
-Alper Kucukural, Galaxy Maintainer: alper.kucukural@umassmed.edu
-
-**Citation**
-
-(from within R, enter citation("CRISPRseek")):
-
-Zhu LJ, Holmes BR, Aronin N and Brodsky MH (2014). “CRISPRseek: A Bioconductor Package to Identify Target-Specific Guide RNAs for CRISPR-Cas9 Genome-Editing Systems.” PLoS one, 9(9). http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4172692/.
-
-**References**
-
-Patrick D Hsu, David A Scott, Joshua A Weinstein, F Ann Ran, Silvana Konermann, Vineeta Agar-
-wala, Yinqing Li, Eli J Fine, Xuebing Wu, Ophir Shalem, Thomas J Cradick, Luciano A Marraffini,
-Gang Bao, Feng Zhang (2013) DNA targeting specificity of rNA-guided Cas9 nucleases. Nature
-Biotechnology 31:827-83
-
-Mali P, Aach J, Stranges PB, Esvelt KM, Moosburner M, Kosuri S, Yang L, Church GM.CAS9
-transcriptional activators for target specificity screening and paired nickases for cooperative genome
-engineering. Nat Biotechnol. 2013. 31(9):833-8 Patrick D Hsu, David A Scott, Joshua A Wein-
-stein, F Ann Ran, Silvana Konermann, Vineeta Agarwala, Yinqing Li, Eli J Fine, Xuebing Wu,
-Ophir Shalem, Thomas J Cradick, Luciano A Marraffini, Gang Bao, Feng Zhang. DNA targeting
-specificity of rNA-guided Cas9 nucleases. Nat Biotechnol. 2013. 31:827-834
-
-**Reference Manual and Materials**
-
-http://www.bioconductor.org/packages/release/bioc/vignettes/CRISPRseek/inst/doc/CRISPRseek.pdf
-
-http://www.bioconductor.org/packages/release/bioc/manuals/CRISPRseek/man/CRISPRseek.pdf
-
-http://www.bioconductor.org/packages/release/bioc/vignettes/CRISPRseek/inst/doc/CRISPRseek.R
-
-
-
-
-
-  </help>
-  <expand macro="citations" />
-
-</tool>
-
--- a/CRISPRSeek/CRISPRSeek/crisprseek_macros.xml	Mon Nov 02 21:19:01 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-<macros>
-	<xml name="requirements">
-	  	<requirements>
-	  		<requirement type="package" version="3.2.1">R</requirement>
-	        <requirement type="package" version="1.11.0">CRISPRseek</requirement>
-	    </requirements>
-	  </xml>
-	<xml name="citations">
-        <citations>
-            <citation type="doi">10.1371/journal.pone.0108424</citation>
-        </citations>
-	</xml>
-</macros>
--- a/CRISPRSeek/CRISPRSeek/offtargetanalysis.xml	Mon Nov 02 21:19:01 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,162 +0,0 @@
-<tool id="offTargetAnalysis" name="Off Target Analysis" version="1.0.0">
-  <description>CRISPRSeek offTargetAnalysis</description>
-    <macros>
-        <import>crisprseek_macros.xml</import>
-    </macros>
-    <expand macro="requirements" />
-    <command detect_errors="exit_code">
-        Rscript "${offTargetAnalysis}"
-    </command>
-    <configfiles>
-        <configfile name="offTargetAnalysis"><![CDATA[
-## code chunk: Load all required libraries quietly
-library(CRISPRseek, quietly=TRUE, warn.conflicts=FALSE,verbose = FALSE)
-
-offTargetAnalysis("${s.inputfile}", BSgenomeName="BSgenome.Hsapiens.UCSC.hg19", txdb ="TxDb.Hsapiens.UCSC.hg19.knownGene",orgAnn="org.Hs.egSYMBOL", REpatternFile = system.file('extdata', 'NEBenzymes.fa', package = 'CRISPRseek'), max.mismatch="${maxmismatch}", exportAllgRNAs="${a.exportAllgRNAs}", searchDirection="${a.searchDirection}", findPairedgRNAOnly=${a.fg.fpg_only}, min.gap = "${a.fg.mingap}", max.gap = "${a.fg.maxgap}", gRNA.name.prefix = "gRNA", PAM.size = "${a.PAMsize}", gRNA.size = "${a.gRNAsize}", PAM = "${a.PAM}", PAM.pattern = "${a.PAMPattern}", chromToSearch="${a.chromToSearch}", minscore="${a.minscore}", topN="${a.topN}", topNOfftargetTotalScore="${a.topNOfftargetTotalScore}", annotateExon="${a.annotateExon}", fetchSequence="${a.fs.fetchSequence}", downstream="${a.fs.downstream}", upstream="${a.fs.upstream}", outputDir, weights="${a.weights}" )
-
-     ]]></configfile>
-    </configfiles>
-  <inputs>
-     <param name="bsgenomename" type="select" label="BS Genome Name" help="BSgenome object. Please refer to available.genomes in BSgenome package. For example, BSgenome.Hsapiens.UCSC.hg19 for hg19, BSgenome.Mmusculus.UCSC.mm10 for mm10, BSgenome.Celegans.UCSC.ce6 for ce6, BSgenome.Rnorvegicus.UCSC.rn5 for rn5, BSgenome.Drerio.UCSC.danRer7 for Zv9, and BSgenome.Dmelanogaster.UCSC.dm3 for dm3">
-           <option value="hg19">hg19</option>
-           <option value="mm10">mm10</option>
-           <option value="ce10">ce10</option>
-     </param> 
-     <conditional name="s">
-       <param name="input_source" type="select" label="Select Input File Path" help="Sequence input file path that contains sequences to be searched for potential gRNAs">
-           <option value="history">History</option>
-           <option value="Fasta">Fasta</option>
-           <option value="FullPath">Full Path</option>
-       </param>
-       <when value="history">
-       <param format="fastq,fa,fasta" name="inputfile" type="data" label="Input File Path" />
-       </when>
-       <when value="FullPath">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input File Path" help="Full path in the cluster"/>
-       </when>
-       <when value="Fasta">
-          <param name="inputfile" type="text" area="true" size="2x60" label="Input Fasta Sequence/s" help="Free text fasta sequences"/>
-       </when>
-    </conditional>
-    <param name="maxmismatch" type="text" label="Max Mismatch" value="3" help="Maximum mismatch allowed in off target search, default 3. Warning: will be considerably slower if set > 3"/>
-    <param name="outputdir" type="text"  area="true" size="2x60" label="Output Directory" help="Output directory in the cluster"/>
-    <conditional name="a">
-       <param name="advanced" type="select" label="Advanced Options">
-           <option value="No" selected="True">No</option>
-           <option value="Yes">Yes</option>
-       </param>
-       <when value="Yes">
-          <param name="exportAllgRNAs" type="select" label="Export All gRNAs" help="Indicate whether to output all potential gRNAs to a file in fasta format, genbank format or both. Default to both.">
-            <option value="all" selected="True">all</option>
-            <option value="fasta">fasta</option>
-            <option value="genbank">genbank</option>
-            <option value="no">no</option>
-         </param>
-         <conditional name="fg">
-           <param name="fpg_only" type="select" label="Find Paired gRNA Only" help="Choose whether to only search for paired gRNAs in such an orientation that the first one is on minus strand called reverse gRNA and the second one is on plus strand called forward gRNA. TRUE or FALSE, default FALSE">
-              <option value="False" selected="True">No</option>
-              <option value="True">Yes</option>
-           </param>
-           <when value="True">
-              <param name="mingap" type="text" label="Min Gap" value="0" />
-              <param name="maxgap" type="text" label="Max Gap" value="20" />
-           </when>
-         </conditional>
-         <param name="PAMsize" type="text" label="PAM Size" value="3" help="PAM length, default 3"/>
-         <param name="PAM" type="text" label="PAM" value="NGG" help="PAM sequence after the gRNA, default NGG"/>
-         <param name="PAMPattern" type="text" label="PAM Pattern" value="N[A_p_G]G_d_"  help="Regular expression of protospacer-adjacent motif (PAM), default N[A|G]G$. Please use _p_ for | and _d_ for $ symbols"/>
-         <param name="gRNAsize" type="text" label="gRNA Size" value="20" help="The size of the gRNA, default 20"/>
-         <param name="minscore" type="text" label="min Score" value="0.5" help="minimum score of an off target to included in the final output, default 0.5"/>
-         <param name="topN" type="text" label="topN" value="100" help="top N off targets to be included in the final output, default 100"/>
-         <param name="topNOfftargetTotalScore" type="text" label="topN OfftargetTotalScore" value="10" help="top N off target used to calculate the total off target score, default 10"/>
-         <param name="annotateExon" type="select" label="Annotate Exon" help="Choose whether or not to indicate whether the off target is inside an exon or not, default TRUE">
-            <option value="true" selected="True">True</option>
-            <option value="false">False</option>
-         </param>
-         <param name="chromToSearch" type="text" label="chromToSearch" value="all" help="Type chromosome (Ex: chrX)"/>
-
-         <conditional name="fs">
-           <param name="fetchSequence" type="select" label="Fetch Sequence" help="Fetch flank sequence of off target or not, default TRUE">
-               <option value="True" selected="True">True</option>
-               <option value="False">False</option>
-           </param>
-           <when value="True">
-             <param name="upstream" type="text" label="upstream" value="200" help="upstream offset from the off target start, default 200"/>
-             <param name="downstream" type="text" label="downstream" value="200" help="downstream offset from the off target end default 200"/>
-           </when>
-           </conditional>
-           <param name="weights" type="text" area="true" size="5x60" value="0, 0, 0.014, 0, 0, 0.395, 0.317, 0, 0.389, 0.079, 0.445, 0.508, 0.613, 0.851, 0.732, 0.828, 0.615, 0.804, 0.685, 0.583" label="Off Target Weights" help="a numeric vector size of gRNA length, default 0, 0, 0.014, 0, 0, 0.395, 0.317, 0, 0.389, 0.079, 0.445, 0.508, 0.613, 0.851, 0.732, 0.828, 0.615, 0.804, 0.685, 0.583 which is used in Hsu et al., 2013 cited in the reference section"/>
-       </when>
-    </conditional>
-  </inputs>
-  <outputs>
-    <data format="gz" name="output"/>
-  </outputs>
-  <help>
-
-**What it does**
-
-The package includes functions to find potential guide RNAs for input target se-
-quences, optionally filter guide RNAs without restriction enzyme cut site, or with-
-out paired guide RNAs, genome-wide search for off-targets, score, rank, fetch flank se-
-quence and indicate whether the target and off-targets are located in exon region or not. Poten-
-tial guide RNAs are annotated with total score of the top5 and topN off-targets, de-
-tailed topN mismatch sites, restriction enzyme cut sites, and paired guide RNAs.
-
-**Description**
-
-Design of target-specific gRNAs for the CRISPR-Cas9 system by automatically finding potential
-gRNAs (paired/not paired), with/without restriction enzyme cut site(s) in a given sequence, search-
-ing for off targets with user defined maximum number of mismatches, calculating score of each
-off target based on mismatch positions in the off target and a penalty weight matrix, filtering off
-targets with user-defined criteria, and annotating off targets with flank sequences, whether located
-in exon or not. Summary report is also generated with gRNAs ranked by total topN off target
-score, annotated with restriction enzyme cut sites and possible paired gRNAs. Detailed paired gR-
-NAs information and restriction enzyme cut sites are stored in separate files in the output directory
-specified by the user. In total, four tab delimited files are generated in the output directory: Off-
-targetAnalysis.xls (off target details), Summary.xls (gRNA summary), REcutDetails.xls (restriction
-enzyme cut sites of each gRNA), and pairedgRNAs.xls (potential paired gRNAs).
-
-**Author(s)**
-
-Lihua Julie Zhu and Michael Brodsky Maintainer: julie.zhu@umassmed.edu
-
-**Citation**
-
-(from within R, enter citation("CRISPRseek")):
-
-Zhu LJ, Holmes BR, Aronin N and Brodsky MH (2014). “CRISPRseek: A Bioconductor Package to Identify Target-Specific Guide RNAs for CRISPR-Cas9 Genome-Editing Systems.” PLoS one, 9(9). http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4172692/.
-
-**References**
-
-http://bioconductor.org/packages/2.8/bioc/vignettes/BSgenome/inst/doc/GenomeSearching.pdf
-
-Patrick D Hsu, David A Scott, Joshua A Weinstein, F Ann Ran, Silvana Konermann, Vineeta Agar-
-wala, Yinqing Li, Eli J Fine, Xuebing Wu, Ophir Shalem, Thomas J Cradick, Luciano A Marraffini,
-Gang Bao, Feng Zhang (2013) DNA targeting specificity of rNA-guided Cas9 nucleases. Nature
-Biotechnology 31:827-83
-
-Mali P, Aach J, Stranges PB, Esvelt KM, Moosburner M, Kosuri S, Yang L, Church GM.CAS9
-transcriptional activators for target specificity screening and paired nickases for cooperative genome
-engineering. Nat Biotechnol. 2013. 31(9):833-8 Patrick D Hsu, David A Scott, Joshua A Wein-
-stein, F Ann Ran, Silvana Konermann, Vineeta Agarwala, Yinqing Li, Eli J Fine, Xuebing Wu,
-Ophir Shalem, Thomas J Cradick, Luciano A Marraffini, Gang Bao, Feng Zhang. DNA targeting
-specificity of rNA-guided Cas9 nucleases. Nat Biotechnol. 2013. 31:827-834
-
-**Reference Manual and Materials**
-
-http://www.bioconductor.org/packages/release/bioc/vignettes/CRISPRseek/inst/doc/CRISPRseek.pdf
-
-http://www.bioconductor.org/packages/release/bioc/manuals/CRISPRseek/man/CRISPRseek.pdf
-
-http://www.bioconductor.org/packages/release/bioc/vignettes/CRISPRseek/inst/doc/CRISPRseek.R
-
-
-
-
-
-  </help>
-  <expand macro="citations" />
-
-</tool>
-
--- a/CRISPRSeek/CRISPRSeek/tool_dependencies.xml	Mon Nov 02 21:19:01 2015 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-<?xml version="1.0"?>
-<tool_dependency>
-        <package name="CRISPRseek" version="1.11.0">
-                <repository name="package_r_crisprseek_1_11_0" owner="alperkucukural" />
-        </package>
-        <package name="R" version="3.2.1">
-        <repository name="package_r_3_2_1" owner="iuc" />
-    </package>
-</tool_dependency>