annotate 1_map_reads.xml @ 10:25b858c2f21d

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