Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
2187f50
Add Sentinel 2 workflow
Marie59 Jul 28, 2022
ed1a22b
Add missing files
Marie59 Jul 28, 2022
68d55ec
change format
Marie59 Aug 1, 2022
3c3049f
change format
Marie59 Aug 1, 2022
68d6f2f
change format
Marie59 Aug 1, 2022
986bfea
change format
Marie59 Aug 1, 2022
01e9b1a
change format
Marie59 Aug 1, 2022
921d355
Create .shed.yml
Marie59 Aug 1, 2022
5dcc721
Update linte r and review
Marie59 Aug 10, 2022
ffcd3be
update lint r and review
Marie59 Aug 15, 2022
d9ffbd8
update type of shed.yml
Marie59 Aug 15, 2022
aa22bef
lint r and fix path issues
Marie59 Aug 22, 2022
59d4e2d
fixing test
Marie59 Aug 22, 2022
461548d
add missing test data files
Marie59 Aug 22, 2022
22db710
Delete Alpha_diversity.tabular
Marie59 Aug 22, 2022
5ab23e2
Delete Beta_diversity.tabular
Marie59 Aug 22, 2022
af0e56c
Delete Cloud_Mask.zip
Marie59 Aug 22, 2022
b04ecde
Delete Global_diversity.tabular
Marie59 Aug 22, 2022
f368201
Add tool obisindicators
Marie59 Sep 6, 2022
861c755
Delete tools/obisindicators directory
Marie59 Sep 6, 2022
070876f
add obisindicators tool
Marie59 Sep 6, 2022
44e4b52
Small issue fixing
Marie59 Sep 6, 2022
233f4d1
add shed
Marie59 Sep 6, 2022
43370bd
Update obisindicators.xml
Marie59 Sep 6, 2022
d75f749
update for lint r
Marie59 Sep 6, 2022
a1a2465
add missing test file
Marie59 Sep 6, 2022
14e7e87
fixing some lint and test issues
Marie59 Sep 6, 2022
ad0248f
fixing issue comaprison
Marie59 Sep 7, 2022
642ab97
Merge pull request #1 from Marie59/Marie59-patch-1
Marie59 Sep 13, 2022
fe3461a
update yaml for lint
Marie59 Sep 13, 2022
42e6e7a
update lint r
Marie59 Sep 14, 2022
9299cbd
Update pr.yaml
Marie59 Sep 14, 2022
fe067cc
Update pr.yaml
Marie59 Sep 14, 2022
f7e6791
Update pr.yaml
Marie59 Sep 14, 2022
f543a87
Add ivr indicators tools
Marie59 Sep 22, 2022
5048a3f
Create .shed.yml
Marie59 Sep 22, 2022
26b0d55
update lintr
Marie59 Sep 22, 2022
f43242e
Update to create markdown reports
Marie59 Sep 26, 2022
0fe0eb1
update for cb_ivr
Marie59 Sep 26, 2022
66cf3b5
add test files
Marie59 Sep 30, 2022
7b92dff
add qecb (without report working)
Marie59 Sep 30, 2022
861b793
update qecb
Marie59 Sep 30, 2022
e5be121
Update dissimilarity indice
Marie59 Oct 5, 2022
94dda8a
add test data
Marie59 Oct 5, 2022
9337fc5
update lintr
Marie59 Oct 10, 2022
0014d5f
Update pr.yaml
Marie59 Oct 10, 2022
f939279
Update pr.yaml
Marie59 Oct 10, 2022
62e106e
Update pr.yaml
Marie59 Oct 10, 2022
df5106b
update r script
Marie59 Oct 11, 2022
c201fa3
update r scripts
Marie59 Oct 11, 2022
0a7d0be
Update pr.yaml
Marie59 Oct 12, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
GALAXY_FORK: galaxyproject
GALAXY_BRANCH: release_21.09
MAX_CHUNKS: 4
MAX_FILE_SIZE: 1M
MAX_FILE_SIZE: 20M
concurrency:
# group runs by PR, but keep runs on master separate
# because we do not want to cancel toolshed uploads
Expand Down Expand Up @@ -191,15 +191,15 @@ jobs:
- name: lintr
run: |
library(lintr)
linters <- with_defaults(line_length_linter = NULL, cyclocomp_linter = NULL, object_usage_linter = NULL)
linters <- linters_with_defaults(line_length_linter = NULL, cyclocomp_linter = NULL, object_usage_linter = NULL)
con <- file("repository_list.txt", "r")
status <- 0
while (TRUE) {
repo <- readLines(con, n = 1)
if (length(repo) == 0) {
break
}
lnt <- lint_dir(repo, relative_path=T, linters=linters)
lnt <- lint_dir(repo, relative_path=T, linters=linters, exclusions=list("tools/SRS_tools/comparison_div.r"=c(153, 160)))
if (length(lnt) > 0) {
status <- 1
for (l in lnt) {
Expand Down
14 changes: 14 additions & 0 deletions tools/SRS_tools/.shed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
categories:
- Ecology
owner: ecology
remote_repository_url: https://github.com/Marie59/Sentinel_2A/SRS_tools
long_description: |
Compute biodiveristy indicators from Sentinel 2 remote sensing data
type: unrestricted
auto_tool_repositories:
name_template: "{{ tool_id }}"
description_template: "Wrapper for spatial remote sensing tool: {{ tool_name }}."
suite:
name: "Sentinel_2A"
description: "A suite of indicators for remote sensing data"
type: unrestricted
Loading