Mercurial > repos > iuc > anndata_inspect
comparison inspect.xml @ 4:bd7a172d345f draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/anndata/ commit 41e70af176ea64ef0bd45a6e980e21bdba80e739"
| author | iuc |
|---|---|
| date | Sat, 18 Jan 2020 08:34:41 +0000 |
| parents | f4835962cbee |
| children | c5db1e459d98 |
comparison
equal
deleted
inserted
replaced
| 3:38277ae5b540 | 4:bd7a172d345f |
|---|---|
| 17 pd.options.display.precision = 15 | 17 pd.options.display.precision = 15 |
| 18 | 18 |
| 19 adata = ad.read('$input') | 19 adata = ad.read('$input') |
| 20 | 20 |
| 21 #if $inspect.info == 'general' | 21 #if $inspect.info == 'general' |
| 22 with open('$general', 'w') as f: | 22 with open('$general', 'w', encoding="utf-8") as f: |
| 23 print(adata, file=f) | 23 print(adata, file=f) |
| 24 | 24 |
| 25 #else if $inspect.info == 'X' | 25 #else if $inspect.info == 'X' |
| 26 adata.to_df().to_csv('$X', sep='\t') | 26 adata.to_df().to_csv('$X', sep='\t') |
| 27 | 27 |
