annotate 1_map_reads.xml @ 43:62531f7399dc

planemo upload commit 0399c6bd696435a7a99d8d8b4c237e5a78ee5856-dirty
author jpayne
date Wed, 25 Apr 2018 15:54:10 -0400
parents 02733e77f84f
children e7cac7790476
rev   line source
jpayne@0 1 <tool id="map_reads" name="1. Map Reads" version="1.0.1" profile="16.10">
jpayne@0 2 <description>to index, or lookup cached alignment</description>
jpayne@0 3 <requirements>
jpayne@12 4 <requirement type="package" version="1.0.6">bzip2</requirement>
jpayne@0 5 <requirement type="package" version="2.3.4">bowtie2</requirement>
jpayne@0 6 <requirement type="package" version="1.5.11">boto3</requirement>
jpayne@37 7 <!-- <requirement type="package" version="3.5">python</requirement> -->
jpayne@0 8 </requirements>
jpayne@0 9 <command detect_errors="exit_code"><![CDATA[
jpayne@40 10 export LD_LIBRARY_PATH="\$CONDA_DEFAULT_ENV/lib" &&
jpayne@0 11 #if $reads.reads_select == 'collection'
jpayne@0 12 export files="$reads.coll.forward $reads.coll.reverse" &&
jpayne@0 13 export params="-1 $reads.coll.forward -2 $reads.coll.reverse" &&
jpayne@0 14 #else
jpayne@0 15 export files="$forward $reverse" &&
jpayne@0 16 export params="-1 $forward -2 $reverse" &&
jpayne@0 17 #end if
jpayne@9 18 python ${__tool_directory__}/snp-cache.py snp_mapped_reads
jpayne@0 19 "\$(md5sum $reference
jpayne@0 20 \$files
jpayne@0 21 | cut -c -32 | md5sum | cut -c -32)"
jpayne@0 22 -c "
jpayne@0 23 cp $reference ./reference.fasta
jpayne@0 24 && bowtie2-build ./reference.fasta --quiet --threads \${GALAXY_SLOTS:-4} ./reference
jpayne@0 25 && bowtie2 -q -x ./reference \$params -p \${GALAXY_SLOTS:-4} --reorder -X 1000
jpayne@0 26 "
jpayne@0 27 #if $reads.reads_select == 'collection'
jpayne@0 28 -o ${align_from_collection}
jpayne@0 29 #else
jpayne@0 30 -o ${align_from_history}
jpayne@0 31 #end if
jpayne@0 32 -l $cache_log
jpayne@0 33 && cat $cache_log
jpayne@0 34 #if $source.source_select == 'curated'
jpayne@0 35 && cp $reference $ref_out
jpayne@0 36 #end if
jpayne@0 37 ]]></command>
jpayne@0 38 <inputs>
jpayne@0 39 <!-- <conditional name="source">
jpayne@0 40 <param name="source_select" type="select" label="Use the reference associated with a provided BioProject, a curated GalaxyTrakr reference, or a reference from your history">
jpayne@0 41 <option value="bioproject">Provide a BioProject</option>
jpayne@0 42 <option value="curated">Use a GalaxyTrakr reference</option>
jpayne@0 43 <option value="history">Use a reference from your history</option>
jpayne@0 44 </param>
jpayne@0 45 <when value="bioproject">
jpayne@0 46 <param type="data" name="bioproject" format="text" />
jpayne@0 47 </when>
jpayne@0 48 <when value="curated">
jpayne@0 49 <param name="input" type="select" label="Select reference fasta">
jpayne@0 50 <options from_data_table="all_fasta">
jpayne@0 51 <filter type="sort_by" column="2"/>
jpayne@0 52 <validator type="no_options" message="No assemblies are available for the selected input dataset"/>
jpayne@0 53 </options>
jpayne@0 54 </param>
jpayne@0 55 </when>
jpayne@0 56 <when value="history">
jpayne@0 57 <param type="data" name="input" format="fasta" label="Select reference FASTA"/>
jpayne@0 58 </when>
jpayne@0 59 </conditional> -->
jpayne@0 60 <conditional name="source">
jpayne@0 61 <param name="source_select" type="select" label="Use a curated GalaxyTrakr reference or a reference from your history">
jpayne@0 62 <option value="curated">Use a GalaxyTrakr reference</option>
jpayne@0 63 <option value="history">Use a reference from your history</option>
jpayne@0 64 </param>
jpayne@0 65 <when value="curated">
jpayne@0 66 <param name="reference" type="select" label="Select reference fasta">
jpayne@0 67 <options from_data_table="all_fasta">
jpayne@0 68 <filter type="sort_by" column="2"/>
jpayne@0 69 <validator type="no_options" message="No assemblies are available for the selected input dataset"/>
jpayne@0 70 </options>
jpayne@0 71 </param>
jpayne@0 72 </when>
jpayne@0 73 <when value="history">
jpayne@0 74 <param type="data" name="reference" format="fasta" label="Select reference FASTA"/>
jpayne@0 75 </when>
jpayne@0 76 </conditional>
jpayne@0 77 <conditional name="reads">
jpayne@0 78 <param name="reads_select" type="select" label="Paired-end collection, or two datasets from your history">
jpayne@0 79 <option value="collection">Paired collection from your history</option>
jpayne@0 80 <option value="history">Two FASTQ datasets from your history</option>
jpayne@0 81 </param>
jpayne@0 82 <when value="collection">
jpayne@43 83 <param label="Paired reads" name="coll" type="data_collection" format="fastq,fastqsanger,fastq.gz,fastqsanger.gz" collection_type="paired" />
jpayne@0 84 </when>
jpayne@0 85 <when value="history">
jpayne@43 86 <param label="Forward reads" type="data" name="forward" format="fastq,fastqsanger,fastq.gz,fastqsanger.gz" />
jpayne@43 87 <param label="Reverse reads" type="data" name="reverse" format="fastq,fastqsanger,fastq.gz,fastqsanger.gz" />
jpayne@0 88 </when>
jpayne@0 89 </conditional>
jpayne@0 90 </inputs>
jpayne@0 91 <outputs>
jpayne@0 92 <data label="${reads.coll.name} alignment" name="align_from_collection" format="sam">
jpayne@0 93 <filter>reads['reads_select'] == 'collection'</filter>
jpayne@0 94 </data>
jpayne@0 95 <data label="${reads.forward.name.split('_')[0]} alignment" name="align_from_history" format="sam">
jpayne@0 96 <filter>reads['reads_select'] == 'history'</filter>
jpayne@0 97 </data>
jpayne@0 98 <data label="S3 Cache log" name="cache_log" format="txt" hidden="true" />
jpayne@0 99 <data label="Reference" name="ref_out" format="fasta" hidden="true">
jpayne@0 100 <filter>source['source_select'] == curated</filter>
jpayne@0 101 </data>
jpayne@0 102 </outputs>
jpayne@0 103 <tests>
jpayne@0 104 <test>
jpayne@0 105 <param name="source_select" value="history" />
jpayne@0 106 <param name="reference" value="reference/lambda_virus.fasta" ftype="fasta" />
jpayne@0 107 <param name="reads_select" value="history" />
jpayne@0 108 <param name="forward" value="samples/sample1/sample1_1.fastq" ftype="fastqsanger" />
jpayne@0 109 <param name="reverse" value="samples/sample1/sample1_2.fastq" ftype="fastqsanger" />
jpayne@0 110 <output name="align_from_history" value="samples/sample1/reads.sam" lines_diff="3" />
jpayne@0 111 </test>
jpayne@0 112 <test>
jpayne@0 113 <param name="source_select" value="history" />
jpayne@0 114 <param name="reference" value="reference/lambda_virus.fasta" ftype="fasta" />
jpayne@0 115 <param name="reads_select" value="collection" />
jpayne@0 116 <param name="coll">
jpayne@0 117 <collection type="paired">
jpayne@0 118 <element name="forward" value="samples/sample1/sample1_1.fastq" ftype="fastqsanger" />
jpayne@0 119 <element name="reverse" value="samples/sample1/sample1_2.fastq" ftype="fastqsanger" />
jpayne@0 120 </collection>
jpayne@0 121 </param>
jpayne@0 122 <output name="align_from_collection" value="samples/sample1/reads.sam" lines_diff="3" />
jpayne@0 123 </test>
jpayne@0 124 </tests>
jpayne@0 125 <help><![CDATA[
jpayne@0 126 <a href="http://snp-pipeline.readthedocs.io/en/latest/index.html">http://snp-pipeline.readthedocs.io/en/latest/index.html</a>
jpayne@0 127 ]]></help>
jpayne@0 128 <citations>
jpayne@0 129 <citation type="doi">10.7717/peerj-cs.20</citation>
jpayne@0 130 <!-- <citation type="bibtex">
jpayne@0 131 @misc{cfsan-snp-pipeline,
jpayne@0 132 author = {Steve Davis and James Pettengill and Yan Luo and Justin Payne and Albert Shpuntoff and Rugh Rand and Errol Strain},
jpayne@0 133 year = {2015},
jpayne@0 134 title = {CFSAN SNP Pipeline: an automated method for constructing SNP matrices from next-generation sequence data},
jpayne@0 135 url = {https://doi.org/10.7717/peerj-cs.20},
jpayne@0 136 journal = {PeerJ Computer Science},
jpayne@0 137 }</citation> -->
jpayne@0 138 </citations>
jpayne@0 139 </tool>