Previous changeset 0:1a0416feb74b (2017-12-12) Next changeset 2:80e19490ec6a (2017-12-12) |
Commit message:
Uploaded |
added:
sm_STAR2_V2.xml |
b |
diff -r 1a0416feb74b -r e8dbc8b9a59a sm_STAR2_V2.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sm_STAR2_V2.xml Tue Dec 12 10:08:21 2017 -0500 |
[ |
b'@@ -0,0 +1,219 @@\n+<!--# Copyright (C) 2014 INRA\n+# This program is free software: you can redistribute it and/or modify\n+# it under the terms of the GNU General Public License as published by\n+# the Free Software Foundation, either version 3 of the License, or\n+# (at your option) any later version.\n+#\n+# This program is distributed in the hope that it will be useful,\n+# but WITHOUT ANY WARRANTY; without even the implied warranty of\n+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n+# GNU General Public License for more details.\n+# \n+# You should have received a copy of the GNU General Public License\n+# along with this program. If not, see http://www.gnu.org/licenses/.\n+#-->\n+<tool id="sm_star_single_V2" name="Map with STAR 2.4.0i">\n+ <description> with GTF and reference</description>\n+ <command interpreter="perl">sm_STAR2_V2.pl\n+ --runThreadN $Nthreads\n+ --refselector $ref.ref_selector\n+ #if $ref.ref_selector =="genotoul":\n+ --genomeDir $ref.reffile.fields.path\n+\t #else:\n+ --refownfastaref $ref.ownfastaref \n+ --refowngtf $ref.owngtf \n+\t #end if\n+\t #if $reads.reads_selector =="paired":\n+ --readsselector $reads.reads_selector \n+\t\t\t --readFilesIn1 $Read1fastqgz \n+ --readFilesIn2 $Read2fastqgz \n+\t #else:\n+ --readsselector $reads.reads_selector \n+\t\t\t --readsinputread $reads.inputread\n+\t #end if\t\n+ --compress $compress\n+ --alignIntronMin $alignIntronMin\n+ --alignIntronMax $alignIntronMax \n+ --outFilterMismatchNmax $outFilterMismatchNmax\n+ --orientation $orientation\n+ --cufflinks $cufflinks\n+ --outputfile $outputfile \n+ --outputfileT $outputfileT\n+ --outputlogSJ $outputlogSJ\n+ --outputlogfinal $outputlogfinal\n+ </command>\n+ <inputs>\n+ \n+ <conditional name="reads">\n+\t\t\t\t\t\t <param name="reads_selector" type="select" label="Paired or single reads">\n+\t\t\t\t\t\t\t <option value="paired">Paired reads</option>\n+\t\t\t\t\t\t\t <option value="single">Single reads</option>\n+\t\t\t\t\t\t </param>\n+\t\t\t\t\t\t <when value="paired">\n+\t\t\t\t\t\t\t <param format="fastq.gz" name="Read1fastqgz" type="data" label="First input fastq gzipped file (read1.fastq.gz)"/>\n+ <param format="fastq.gz" name="Read2fastqgz" type="data" label="Second input fastq gzipped file (read2.fastq.gz)"/> \t\t\t\t\t\t\t \t\t\t\t\t\t \n+\t\t\t\t\t\t </when>\n+\t\t\t\t\t\t <when value="single"> \n+\t\t\t\t\t\t\t <param format="fastq, fastqsanger, fastqillumina" name="inputread" type="data" label="Your single read RNA-Seq FASTQ file"/>\n+\t\t\t\t\t\t </when>\n+\t\t\t\t\t\t</conditional> \n+\t\t\t\t\t\t\n+\t\t\t\t\t\t<param name="compress" type="select" help="fastq files are compressed or not" label="compressed fastq file">\n+ <option value="compress">Yes, compressed</option>\n+ <option value="notcompress">Not compressed</option>\n+ </param> \n+\t\t\t\t\t\t\n+ \n+ <param name="Nthreads" size="30" type="text" value="8" label="Threads number"/>\n+ <param name="alignIntronMin" size="30" type="text" value="20" label="alignIntronMin"/>\n+ <param name="alignIntronMax" size="30" type="text" value="1000000" label="alignIntronMax"/>\n+ <param name="outFilterMismatchNmax" size="30" type="text" value="10" label="outFilterMismatchNmax"/>\n+ <param name="orientation" type="select" help="Instead, you need to run Cufflinks with the library option --library-type options. For example, cufflinks -library-type fr-firststrand should be used for the \xe2\x80\x9cstandard\xe2\x80\x9d dUTP protocol. This option has to be used only for Cufflinks runs and not for STAR runs." label="RNAseq oriented (default : oriented for STAR - Option to be set only for cufflinks runs)">\n+ '..b'astq --genomeDir /path/to/STARindex/ --sjdbGTFfile ref.gtf --alignIntronMin 20 --alignIntronMax 1000000 --outFilterMismatchNmax 10 --outSAMtype BAM SortedByCoordinate --runThreadN 4 --outFileNamePrefix galaxyName\n+\n+If fastq input files are compressed, add this option:\n+\n+--readFilesCommand zcat for fastq.gz files.\n+\n+For Cufflinks-like strand field flag and types of quantification requested, add these options:\n+\n+--outSAMstrandField intronMotif --outFilterIntronMotifs RemoveNoncanonical --outFilterType BySJout --quantMode TranscriptomeSAM \n+\n+\n+\n+**Parameters**\n+ \n+--readFilesIn : name(s) (with path) of the files containing the sequences to be mapped (e.g. RNA-seq FASTQ files). If using Illumina paired-end reads, the read1 and read2 files have to be supplied. STAR can process both FASTA and FASTQ files. Multi-line (i.e. sequence split in multiple lines) FASTA file are supported. \n+\n+--sjdbGTFfile : species the path to the file with annotated transcripts in the standard GTF format. STAR will extract splice junctions from this file and use them to greatly improve accuracy of the mapping. While this is optional, and STAR can be run without annotations, using annotations is highly recommended whenever they are available. \n+\n+\n+**If fastq input files are compressed :**\n+\n+--readFilesCommand : UncompressionCommand option, where UncompressionCommand is the un-compression command that takes the file name as input parameter, and sends the uncompressed output to stdout. For example, for gzipped files (*.gz) use --readFilesCommand zcat OR --readFilesCommand gzip -c. For bzip2-compressed files, use --readFilesCommand bzip2 -c\n+\n+\n+**Other parameters**\n+\n+--alignIntronMin (default: 21) : minimum intron size: genomic gap is considered intron if its length>=alignIntronMin, otherwise it is considered Deletion\n+\n+--alignIntronMax (default: 0) : maximum intron size, if 0, max intron size will be determined by (2\xcb\x86winBinNbits)*winAnchorDistNbins\n+\n+--outFilterMismatchNmax (default: 10) alignment will be output only if it has fewer mismatches than this value.\n+\n+--outSAMtype BAM SortedByCoordinate : output sorted by coordinate Aligned.sortedByCoord.out.bam file, similar to samtools sort command.\n+\n+--outFileNamePrefix : output files name prefix (including full or relative path). Can only be defined on the command line.\n+\n+\n+**For Cufflinks-like strand field flag**\n+\n+--outSAMstrandField intronMotif : strand derived from the intron motif. Reads with inconsistent and/or non-canonical introns are filtered out.\n+\n+In addition, it is recommended to remove the non-canonical junctions for Cufflinks runs using --outFilterIntronMotifs RemoveNoncanonical.\n+\n+--outFilterType BySJout : keep only those reads that contain junctions that passed filtering into SJ.out.tab\n+\n+\n+**Types of quantification requested**\n+\n+--quantMode TranscriptomeSAM : output SAM/BAM alignments to transcriptome into a separate file\n+\n+\n+**job**\n+\n+--runThreadN option defines the number of threads to be used for genome generation, it has to be set to the number of available cores on the server node.\n+\n+\n+\n+---\n+\n+Version Galaxy Tool : V2.0\n+\n+Versions of bioinformatics tools used :\n+ \n+ A. Dobin et al, Bioinformatics 2012; doi: 10.1093/bioinformatics/bts635\n+ \n+ "STAR: ultrafast universal RNA-seq aligner" \n+ \n+ Important announcements from the author: https://groups.google.com/d/forum/rna-star-announce\n+ \n+ General user mailing list (recommended): https://groups.google.com/d/forum/rna-star\n+ \n+ Email: dobin@cshl.edu \n+ \n+ STAR_2.4.0i\n+\n+---\n+\n+Contacts (noms et emails) : sigenae-support@listes.inra.fr\n+\n+E-learning available : Not yet.\n+\n+Please cite :\n+ \n+ Depending on the help provided you can cite us in acknowledgements, references or both.\n+ \n+ Examples :\n+ Acknowledgements\n+ We wish to thank the SIGENAE group for ....\n+ \n+ References\n+ X. SIGENAE [http://www.sigenae.org/]\n+\n+ </help>\n+</tool>\n' |