Previous changeset 6:05631436cdf1 (2022-05-07) Next changeset 8:e98619de2776 (2023-11-12) |
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ commit 7decaee045e15bd71deb3bc46b81aa39caf1ed31 |
modified:
loompy_to_tsv.py macros.xml modify_loom.xml |
b |
diff -r 05631436cdf1 -r 4b0adaa31c95 loompy_to_tsv.py --- a/loompy_to_tsv.py Sat May 07 19:55:14 2022 +0000 +++ b/loompy_to_tsv.py Wed Jun 22 07:20:18 2022 +0000 |
[ |
@@ -20,7 +20,7 @@ allrows = [] # Build background info for all attributes and layers -loompyfile = loompy.connect(file) +loompyfile = loompy.connect(file, mode="r") row_attributes = loompyfile.ra.keys() # List of row attributes for row in row_attributes: # Each list represents rownames for row_attributes c_row = loompyfile.ra[row] |
b |
diff -r 05631436cdf1 -r 4b0adaa31c95 macros.xml --- a/macros.xml Sat May 07 19:55:14 2022 +0000 +++ b/macros.xml Wed Jun 22 07:20:18 2022 +0000 |
b |
@@ -1,9 +1,9 @@ <macros> - <token name="@VERSION@">0.7.5</token> - <token name="@GALAXY_VERSION@">galaxy0</token> + <token name="@TOOL_VERSION@">0.7.5</token> + <token name="@VERSION_SUFFIX@">1</token> <xml name="requirements"> <requirements> - <requirement type="package" version="@VERSION@">anndata</requirement> + <requirement type="package" version="@TOOL_VERSION@">anndata</requirement> <requirement type="package" version="2.0.17">loompy</requirement> <yield /> </requirements> |
b |
diff -r 05631436cdf1 -r 4b0adaa31c95 modify_loom.xml --- a/modify_loom.xml Sat May 07 19:55:14 2022 +0000 +++ b/modify_loom.xml Wed Jun 22 07:20:18 2022 +0000 |
b |
@@ -1,4 +1,4 @@ -<tool id="modify_loom" name="Manipulate loom object" version="@VERSION@+galaxy1"> +<tool id="modify_loom" name="Manipulate loom object" version="@TOOL_VERSION@+galaxy1"> <description>Add layers, or row/column attributes to a loom file</description> <macros> <import>macros.xml</import> |