Repository 'pancancer_map_mutation_class'
hg clone https://toolshed.g2.bx.psu.edu/repos/vijay/pancancer_map_mutation_class

Changeset 0:54c85c40dce1 (2020-12-16)
Commit message:
"planemo upload for repository http://github.com/nvk747/papaa/galaxy/ commit 954b283ef7f82f59f55476a4b3a230d655187ac1"
added:
macros.xml
map_mutation_class.xml
b
diff -r 000000000000 -r 54c85c40dce1 macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml Wed Dec 16 23:31:49 2020 +0000
[
b'@@ -0,0 +1,229 @@\n+<macros>\n+    <token name="@VERSION@">0.1.9</token>\n+\n+    <xml name="requirements">\n+        <requirements>\n+            <requirement type="package" version="@VERSION@">papaa</requirement>\n+        </requirements>\n+    </xml>\n+\n+    <xml name="stdio">\n+        <stdio>\n+             <exit_code level="fatal" range="1:"/>\n+        </stdio>\n+    </xml>\n+\n+    <xml name="inputs_basic">\n+        <param argument="--x_matrix" label="Filename of features to use in model" name="x_matrix" optional="true" type="data" format="tabular" help="data/pancan_rnaseq_freeze.tsv.gz"/>\n+        <yield/>\n+        <param argument="--filename_mut" label="Filename mutations" name="filename_mut" optional="true" type="data" format="tabular" help="data/pancan_mutation_freeze.tsv.gz"/>\n+        <param argument="--filename_mut_burden" label="Filename of mutation burden" name="filename_mut_burden" optional="true" type="data" format="tabular" help="data/mutation_burden_freeze.tsv"/>\n+        <param argument="--filename_sample" label="Filename of sample" name="filename_sample" optional="true" type="data" format="tabular" help="data/sample_freeze.tsv"/>\n+    </xml>\n+\n+    <token name="@INPUTS_BASIC@"><![CDATA[\n+        #if $x_matrix and $x_matrix is not None:\n+        --x_matrix \'$x_matrix\'\n+        #end if\n+        #if $filename_mut and $filename_mut is not None:\n+        --filename_mut \'$filename_mut\'\n+        #end if\n+        #if $filename_mut_burden and $filename_mut_burden is not None:\n+        --filename_mut_burden \'$filename_mut_burden\'\n+        #end if\n+        #if $filename_sample and $filename_sample is not None:\n+        --filename_sample \'$filename_sample\'\n+        #end if\n+        ]]>\n+    </token>\n+\n+    <xml name="inputs_genes_diseases">\n+        <param argument="--genes" label="Comma separated string of HUGO gene symbols" name="genes" optional="False" type="text" value="ERBB2,PIK3CA,KRAS,AKT1"/>\n+        <param argument="--diseases" label="Comma sep string of TCGA disease acronyms. If no arguments are passed, filtering will default to options given in --filter_count and --filter_prop." name="diseases" optional="true" type="text" value="BLCA,BRCA,CESC,COAD,ESCA,LUAD,LUSC,OV,PRAD,READ,STAD,UCEC,UCS"/>\n+    </xml>\n+\n+    <token name="@INPUTS_GENES_DISEASES@"><![CDATA[\n+        #if $genes and $genes is not None:\n+        --genes \'$genes\'\n+        #end if\n+        #if $diseases and str($diseases) != \'\':\n+        --diseases \'$diseases\'\n+        #end if\n+        ]]>\n+    </token>\n+\n+\n+    <xml name="input_filename_raw_mut">\n+        <param argument="--filename_raw_mut" label="Filename of raw mut MAF" name="filename_raw_mut" optional="true" type="data" format="tabular" help="data/raw/mc3.v0.2.8.PUBLIC.maf"/>\n+    </xml>\n+\n+    <token name="@INPUT_FILENAME_RAW_MUT@"><![CDATA[\n+        #if $filename_raw_mut and $filename_raw_mut is not None:\n+        --filename_raw_mut \'$filename_raw_mut\'\n+        #end if\n+        ]]>\n+    </token>\n+\n+\n+    <xml name="input_filename_burden">\n+        <param argument="--filename_burden" label="Burden file" name="filename_burden" optional="true" type="data" format="tabular" help="data/seg_based_scores.tsv"/>\n+    </xml>\n+\n+    <token name="@INPUT_FILENAME_BURDEN@"><![CDATA[\n+        #if $filename_burden and $filename_burden is not None:\n+        --filename_burden \'$filename_burden\'\n+        #end if\n+        ]]>        \n+    </token>\n+\n+    <xml name="input_filename_snaptron_samples">\n+        <param argument="--sample_file" label="SNAPTRON samples" name="sample_file" optional="true" type="data" format="tabular" help="scripts/snaptron/samples.tsv.gz"/>\n+    </xml>\n+\n+    <token name="@INPUT_FILENAME_SNAPTRON_SAMPLES@"><![CDATA[\n+        #if $sample_file and $sample_file is not None:\n+        --sample_file \'$sample_file\'\n+        #end if\n+        ]]>       \n+    </token>\n+\n+\n+    <xml name="input_filename_snaptron_junctions">\n+        <param argument="--junction_file" label="SNAPTRON junctions" name="junct'..b'\'\n+        #end if\n+        ]]>\n+    </token>\n+    \n+    <token name="@INPUTS_COPY_NUMBER_FILE_CONDITIONAL@"><![CDATA[\n+        #if $copy_number_conditional.copy_number\n+        $copy_number_conditional.copy_number\n+        #if $copy_number_conditional.filename_copy_loss and $copy_number_conditional.filename_copy_loss is not None:\n+        --filename_copy_loss \'$copy_number_conditional.filename_copy_loss\'\n+        #end if\n+        #if $copy_number_conditional.filename_copy_gain and $copy_number_conditional.filename_copy_gain is not None:\n+        --filename_copy_gain \'$copy_number_conditional.filename_copy_gain\'\n+        #end if\n+        ##@INPUTS_COPY_NUMBER_FILE@\n+        #end if\n+        ]]>\n+    </token>\n+\n+    <token name="@INPUTS_COPY_NUMBER_CLASS_FILE_PREFIX@"><![CDATA[\n+        #set $copy_number_conditional = type(\'\',(object,),{\'filename_copy_loss\':$filename_copy_loss,\'filename_copy_gain\':$filename_copy_gain,\'filename_cancer_gene_classification\':$filename_cancer_gene_classification})()\n+        ]]>\n+    </token>\n+\n+    <token name="@INPUTS_COPY_NUMBER_CLASS_FILE@"><![CDATA[\n+        #if $copy_number_conditional.filename_copy_loss and $copy_number_conditional.filename_copy_loss is not None:\n+        --filename_copy_loss \'$copy_number_conditional.filename_copy_loss\'\n+        #end if\n+        #if $copy_number_conditional.filename_copy_gain and $copy_number_conditional.filename_copy_gain is not None:\n+        --filename_copy_gain \'$copy_number_conditional.filename_copy_gain\'\n+        #end if\n+        #if $copy_number_conditional.filename_cancer_gene_classification and $copy_number_conditional.filename_cancer_gene_classification is not None:\n+        --filename_cancer_gene_classification \'$copy_number_conditional.filename_cancer_gene_classification\'\n+        #end if\n+        ]]>\n+    </token>\n+    \n+    <token name="@INPUTS_COPY_NUMBER_CLASS_FILE_CONDITIONAL@"><![CDATA[\n+        #if $copy_number_conditional.copy_number\n+        $copy_number_conditional.copy_number\n+        ##\n+        #if $copy_number_conditional.filename_copy_loss and $copy_number_conditional.filename_copy_loss is not None:\n+        --filename_copy_loss \'$copy_number_conditional.filename_copy_loss\'\n+        #end if\n+        #if $copy_number_conditional.filename_copy_gain and $copy_number_conditional.filename_copy_gain is not None:\n+        --filename_copy_gain \'$copy_number_conditional.filename_copy_gain\'\n+        #end if\n+        #if $copy_number_conditional.filename_cancer_gene_classification and $copy_number_conditional.filename_cancer_gene_classification is not None:\n+        --filename_cancer_gene_classification \'$copy_number_conditional.filename_cancer_gene_classification\'\n+        #end if\n+        ##@INPUTS_COPY_NUMBER_CLASS_FILE@\n+        #end if\n+        ]]> \n+    </token>\n+\n+    <xml name="input_remove_hyper">\n+        <param argument="--remove_hyper" checked="false" label="Remove hypermutated samples" name="remove_hyper" type="boolean" truevalue="--remove_hyper" falsevalue=""/>\n+    </xml>\n+    <token name="@INPUT_REMOVE_HYPER@"><![CDATA[$remove_hyper]]></token>\n+       \n+    <xml name="input_alphas">\n+        <param argument="--alphas" label="the alphas for parameter sweep" name="alphas" optional="true" type="text" value="0.1,0.13,0.15,0.18,0.2,0.3,0.4,0.6,0.7"/>\n+    </xml>\n+\n+    <token name="@INPUTS_ALPHAS@"><![CDATA[\n+        #if $alphas and $alphas is not None:\n+        --alphas \'$alphas\'\n+        #end if\n+        ]]>\n+    </token>\n+\n+    <xml name="input_l1_ratios">\n+        <param argument="--l1_ratios" label="the l1 ratios for parameter sweep" name="l1_ratios" optional="true" type="text" value="0.1,0.125,0.15,0.2,0.25,0.3,0.35"/>\n+    </xml>\n+\n+    <token name="@INPUTS_L1_RATIOS@"><![CDATA[\n+        #if $l1_ratios and $l1_ratios is not None:\n+        --l1_ratios \'$l1_ratios\'\n+        #end if\n+        ]]>\n+    </token>\n+    <xml name="citations">\n+        <citations>\n+            <yield />\n+        </citations>\n+    </xml>\n+</macros>\n+\n'
b
diff -r 000000000000 -r 54c85c40dce1 map_mutation_class.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/map_mutation_class.xml Wed Dec 16 23:31:49 2020 +0000
[
@@ -0,0 +1,59 @@
+<tool id="pancancer_map_mutation_class" name="PAPAA: PanCancer map mutation class" version="@VERSION@">
+  <description>map mutation class</description>
+  <macros>
+    <import>macros.xml</import>
+  </macros>
+  <expand macro="requirements"/>
+  <expand macro="stdio"/>
+  <version_command><![CDATA['papaa_map_mutation_class.py' --version]]></version_command>
+  <command><![CDATA[
+      mkdir 'classifier' &&
+      ln -s '${classifier_decisions}' 'classifier/classifier_decisions.tsv' && 
+      papaa_map_mutation_class.py
+      --classifier_decisions 'classifier'
+      #if $path_genes and str($path_genes):
+      --path_genes '$path_genes'
+      #end if
+      @INPUTS_COPY_NUMBER_FILE_CONDITIONAL@
+      @INPUT_FILENAME_RAW_MUT@
+      > '${log}'
+    ]]> 
+  </command>
+  <inputs>
+    <param argument="--classifier_decisions" label="pancancer decisions" name="classifier_decisions" optional="false" type="data" format="tabular" help="classifier_decisions.tsv"/>
+    <param argument="--path_genes" label="string of the genes to extract or genelist file" name="path_genes" optional="true" type= "data" format="txt"/>
+    <expand macro="inputs_copy_number_file_conditional" />
+    <expand macro="input_filename_raw_mut" />
+  </inputs>
+  <outputs>
+    <data format="txt" name="log" label="${tool.name} on ${on_string} (Log)"/>
+    <data format="tabular" name="mutation_classification_scores" label="${tool.name} on ${on_string} (mutation_classification_scores.tsv)" from_work_dir="classifier/tables/mutation_classification_scores.tsv"/>
+  </outputs>
+  <tests>
+        <test>
+          <param name="classifier_decisions" value="classifier_decisions.tsv" ftype="tabular"/>
+          <param name="path_genes" value="path_genes.txt" ftype="txt"/>
+          <param name="copy_number" value="yes"/>
+          <param name="filename_copy_loss" value="copy_number_loss_status_t10p.tsv.gz" ftype="tabular"/>
+          <param name="filename_copy_gain" value="copy_number_gain_status_t10p.tsv.gz" ftype="tabular"/>
+          <param name="filename_raw_mut" value="mc3.v0.2.8.PUBLIC_t1p.maf.gz" ftype="tabular"/>
+          <output name="log" file="map_mutation_class_Log.txt"/>
+          <output name="mutation_classification_scores" file="mutation_classification_scores.tsv" />
+        </test>
+  </tests>
+  <help><![CDATA[
+
+    **Pancancer_Aberrant_Pathway_Activity_Analysis scripts/papaa_map_mutation_class.py:**
+      
+      **Inputs:**
+        --classifer_decisions   String of the location of folder containing classifier_decisions.tsv
+        --path_genes  comma separated string of HUGO symbols for all genes in the pathway or Pathway genes list file
+        --filename_copy_loss  Filename of copy number loss
+        --filename_copy_gain  Filename of copy number gain
+        --filename_raw_mut  Filename of raw mut MAF
+        
+      **Outputs:**
+      Merge per sample classifier scores with mutation types present in each sample and generate "mutation_classification_scores.tsv" file  ]]>
+    </help>
+    <expand macro="citations" />
+</tool>