-
Notifications
You must be signed in to change notification settings - Fork 441
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tools/bcftools
- Loading branch information
Showing
6,157 changed files
with
2,547,305 additions
and
1,370,916 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
# See documentation here: | ||
# https://blog.github.com/2017-07-06-introducing-code-owners/ | ||
# https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners | ||
|
||
tools/art/* @hexylena | ||
tools/circos/* @hexylena @shiltemann | ||
tools/jbrowse/* @hexylena @abretaud | ||
tools/blastxml_to_gapped_gff3/* @hexylena | ||
tools/gff3_rebase/* @hexylena | ||
tools/jq/* @hexylena | ||
tools/hmmer3/* @hexylena | ||
tools/progressivemauve/* @hexylena | ||
tools/ncbi_entrez_eutils/* @hexylena | ||
tools/mothur/* @shiltemann | ||
/tool_collections/snpeff/ @nsoranzo | ||
/tools/abyss/ @nsoranzo | ||
/tools/ampvis2/ @bernt-matthias | ||
/tools/art/ @hexylena | ||
/tools/bcftools/ @nsoranzo | ||
/tools/blastxml_to_gapped_gff3/ @hexylena | ||
/tools/cdhit/ @nsoranzo | ||
/tools/circos/ @hexylena @shiltemann | ||
/tools/collection_element_identifiers/ @nsoranzo | ||
/tools/column_maker/ @nsoranzo | ||
/tools/dada2/ @bernt-matthias | ||
/tools/emboss_5/ @nsoranzo | ||
/tools/gff3_rebase/ @hexylena | ||
/tools/hmmer3/ @hexylena @nsoranzo | ||
/tools/jbrowse/ @hexylena @abretaud | ||
/tools/jq/ @hexylena | ||
/tools/minia/ @nsoranzo | ||
/tools/mitos/ @bernt-matthias | ||
/tools/mothur/ @shiltemann | ||
/tools/ncbi_entrez_eutils/ @hexylena | ||
/tools/progressivemauve/ @hexylena | ||
/tools/prokka/ @nsoranzo | ||
/tools/raxml/ @nsoranzo | ||
/tools/revoluzer/ @bernt-matthias | ||
/tools/scater/ @nsoranzo | ||
/tools/seurat/ @nsoranzo | ||
/tools/sickle/ @nsoranzo | ||
/tools/stringtie/ @nsoranzo | ||
/tools/ucsc_tools/ @nsoranzo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FOR CONTRIBUTOR: | ||
* [ ] - I have read the [CONTRIBUTING.md](https://github.com/galaxyproject/tools-iuc/blob/master/CONTRIBUTING.md) document and this tool is appropriate for the tools-iuc repo. | ||
* [ ] - License permits unrestricted use (educational + commercial) | ||
* [ ] - This PR adds a new tool or tool collection | ||
* [ ] - This PR updates an existing tool or tool collection | ||
* [ ] - This PR does something else (explain below) | ||
* [ ] I have read the [CONTRIBUTING.md](https://github.com/galaxyproject/tools-iuc/blob/master/CONTRIBUTING.md) document and this tool is appropriate for the tools-iuc repo. | ||
* [ ] License permits unrestricted use (educational + commercial) | ||
* [ ] This PR adds a new tool or tool collection | ||
* [ ] This PR updates an existing tool or tool collection | ||
* [ ] This PR does something else (explain below) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/usr/bin/env Rscript | ||
|
||
library("argparse") | ||
library("styler") | ||
|
||
parser <- ArgumentParser(description = "Call styler") | ||
parser$add_argument("dir", | ||
metavar = "DIR", type = "character", | ||
help = "File to parse" | ||
) | ||
parser$add_argument("--dry", | ||
choices = c("off", "on"), default = "on" | ||
) | ||
args <- parser$parse_args() | ||
|
||
file_info <- file.info(args$dir) | ||
is_directory <- file_info$isdir | ||
|
||
if (is_directory) { | ||
captured_output <- capture.output({ | ||
result <- style_dir(args$dir, indent_by = 4, dry = args$dry, recursive = TRUE) | ||
}) | ||
} else { | ||
captured_output <- capture.output({ | ||
result <- style_file(args$dir, indent_by = 4, dry = args$dry) | ||
}) | ||
} | ||
|
||
n <- nrow(subset(result, changed == TRUE)) | ||
if (n > 0) { | ||
if (args$dry == "off") { | ||
print(paste("Changed", n, "files")) | ||
} else { | ||
stop(paste("Linting failed for", n, "files")) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.