Previous changeset 0:fec3147b0206 (2019-10-05) Next changeset 2:abdc27e01dca (2022-07-09) |
Commit message:
"planemo upload for repository https://github.com/NordicESMhub/galaxy-tools/tree/master/tools/climate-stripes commit 78edbd356193b8a8701ff7a28b7979c7047c0c5b" |
modified:
climate-stripes.xml climate_stripes.py test-data/T2Mstripes.png test-data/T2Mstripes_with_axis.png |
b |
diff -r fec3147b0206 -r c6f2435d680b climate-stripes.xml --- a/climate-stripes.xml Sat Oct 05 17:03:08 2019 -0400 +++ b/climate-stripes.xml Tue Apr 14 15:08:10 2020 -0400 |
[ |
@@ -1,9 +1,9 @@ -<tool id="climate_stripes" name="climate stripes" version="1.0.0"> +<tool id="climate_stripes" name="climate stripes" version="1.0.1"> <description>from timeseries</description> <requirements> <requirement type="package" version="3">python</requirement> <requirement type="package" version="3.1.1">matplotlib</requirement> - <requirement type="package" version="0.25.1">pandas</requirement> + <requirement type="package" version="1.0.0">pandas</requirement> </requirements> <command detect_errors="exit_code"><![CDATA[ python3 '$__tool_directory__/climate_stripes.py' |
b |
diff -r fec3147b0206 -r c6f2435d680b climate_stripes.py --- a/climate_stripes.py Sat Oct 05 17:03:08 2019 -0400 +++ b/climate_stripes.py Tue Apr 14 15:08:10 2020 -0400 |
[ |
@@ -82,8 +82,8 @@ fig = plt.figure(figsize=(10, 2)) ax = plt.subplot(111) plt.pcolor(data, cmap=self.cmap, - vmin=self.data[self.valname].min(), - vmax=self.data[self.valname].max()) + vmin=self.data[self.valname].quantile(q=0.01), + vmax=self.data[self.valname].quantile(q=0.99)) if self.title: plt.title(self.title) if self.xname: |
b |
diff -r fec3147b0206 -r c6f2435d680b test-data/T2Mstripes.png |
b |
Binary file test-data/T2Mstripes.png has changed |
b |
diff -r fec3147b0206 -r c6f2435d680b test-data/T2Mstripes_with_axis.png |
b |
Binary file test-data/T2Mstripes_with_axis.png has changed |