annotate build_matrix.xml @ 0:eb4f81df2159 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
author iuc
date Tue, 18 Apr 2023 13:18:07 +0000
parents
children 0004aee8b905
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
1 <tool id="episcanpy_build_matrix" name="Build count matrix" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
2 <description>with EpiScanpy</description>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
3 <macros>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
4 <import>macros.xml</import>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
5 </macros>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
6 <expand macro="bio_tools"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
8 <expand macro="version_command"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
10 bgzip -c '$fragment_file' > fragments.gz &&
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
11 tabix -p bed fragments.gz &&
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
12 cat '$script_file' > '$hidden_output' &&
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
13 python '$script_file' >> '$hidden_output' &&
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
14 touch 'anndata_info.txt' &&
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
15 cat 'anndata_info.txt' @CMD_prettify_stdout@
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
16 ]]></command>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
17 <configfiles>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
18 <configfile name="script_file"><![CDATA[
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
19 @CMD_imports@
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
20 peaks = esc.ct.load_peaks('$peaks_file')
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
21 esc.ct.norm_peaks(peaks, extension=$extension)
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
22 esc.ct.bld_mtx_bed(
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
23 fragment_file='fragments.gz',
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
24 feature_region=peaks,
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
25 #if $reference_chr.chr_select == 'custom'
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
26 #set $chromosomes = ([x.strip() for x in str($reference_chr.chromosomes).split(',')])
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
27 chromosomes=$chromosomes,
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
28 #else
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
29 chromosomes='$reference_chr.chr_select',
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
30 #end if
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
31 save='anndata.h5ad')
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
32 ]]></configfile>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
33 </configfiles>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
34 <inputs>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
35 <param name="fragment_file" type="data" format="bed" label="ATAC fragments file" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
36 <param name="peaks_file" type="data" format="tabular" label="Features file" help="Peaks BED file or MACS2 narrowPeak file"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
37 <param name="extension" type="integer" value="0" min="0" label="Number of bases to extend both sides of peaks" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
38 <conditional name="reference_chr">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
39 <param name="chr_select" type="select" label="Select the chromosomes of the species you are considering" >
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
40 <option value="human">Human chromosomes ['1', '2', '3', ... , '22', 'X', 'Y']</option>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
41 <option value="mouse">Mouse chromosomes ['1', '2', '3', ... ', '19', 'X', 'Y']</option>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
42 <option value="custom">Custom list of chromosomes</option>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
43 </param>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
44 <when value="human" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
45 <when value="mouse" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
46 <when value="custom">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
47 <param name="chromosomes" value="" type="text" label="Enter comma seperated list of chromosome ids (without chr prefix)" >
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
48 <expand macro="sanitize_query" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
49 </param>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
50 </when>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
51 </conditional>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
52 <expand macro="inputs_common_advanced"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
53 </inputs>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
54 <outputs>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
55 <data name="anndata_out" format="h5ad" from_work_dir="anndata.h5ad" label="${tool.name} on ${on_string}: Annotated data matrix"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
56 <data name="hidden_output" format="txt" label="Log file" hidden="true" >
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
57 <filter>advanced_common['show_log']</filter>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
58 </data>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
59 </outputs>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
60 <tests>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
61 <test expect_num_outputs="2">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
62 <!-- count matrix -->
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
63 <param name="fragment_file" value="chrY.fragments.bed" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
64 <param name="peaks_file" value="chrY.peaks.bed" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
65 <conditional name="reference_chr">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
66 <param name="chr_select" value="custom" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
67 <param name="chromosomes" value="Y" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
68 </conditional>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
69 <section name="advanced_common">
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
70 <param name="show_log" value="true" />
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
71 </section>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
72 <output name="anndata_out" file="chrY.h5ad" ftype="h5ad" compare="sim_size"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
73 </test>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
74 </tests>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
75 <help>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
76 .. class:: infomark
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
77
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
78 **What it does**
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
79
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
80 Builds single-cell ATAC-seq count matrix in Anndata format.
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
81
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
82 -----
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
83
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
84 **Inputs**
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
85
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
86 - ATAC fragments containing the positions of Tn5 integration sites, the cell barcode that the DNA fragment originated from, and the number of times the fragment was sequenced. An example::
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
87
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
88 chrY 2650256 2650533 GACCAATGTCCGTAGC 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
89 chrY 2650420 2650463 TGACAACGTACTTCAG 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
90 chrY 2650444 2650643 GTGGATTGTACAAGCG 3
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
91 chrY 2650639 2650990 ATAGGCTAGGGCTCTC 2
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
92 chrY 2650650 2650692 GACTAACAGCAACGGT 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
93 chrY 2650699 2650942 TCAAAGCTCAAAGTAG 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
94 chrY 2650768 2650809 TTGTTGTAGGGCATTG 2
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
95 chrY 2650841 2650873 TTGTTGTAGGGCATTG 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
96 chrY 2650957 2650995 GACTAACAGCAACGGT 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
97 chrY 2651205 2651265 TCAAAGCTCAAAGTAG 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
98 chrY 2651215 2651268 TCACAAGGTCAAGACG 1
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
99
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
100 - Features file. A plain BED file with peak locations or narrowPeak file from MACS2.
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
101
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
102 **Output**
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
103
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
104 - Count matrix in Anndata format.
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
105
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
106 </help>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
107 <expand macro="citations"/>
eb4f81df2159 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/episcanpy/ commit ce8ee43d7285503a24c7b0f55c09c513be8c66f5
iuc
parents:
diff changeset
108 </tool>