-
Notifications
You must be signed in to change notification settings - Fork 6
Release 0.12.8 #144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release 0.12.8 #144
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
aca85f5
fixed #141
khoroshevskyi 7b4fa63
fixed #135
khoroshevskyi 5908c88
updated github actions
khoroshevskyi 9ee1df2
fixed #143
khoroshevskyi f2dff6d
fixed sra convert functionality
khoroshevskyi 24710d4
lint
khoroshevskyi b6c6ffe
Removed unused files
khoroshevskyi a0ff9dc
Updated Readme
khoroshevskyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,9 @@ | ||
| include requirements/* | ||
| include README.md | ||
| include docs/img/geofetch_logo.svg | ||
| include geofetch/config_template.yaml | ||
| include geofetch/config_processed_template.yaml | ||
| include geofetch/looper_sra_convert.yaml | ||
| include geofetch/templates/* | ||
| include geofetch/templates/config_template.yaml | ||
| include geofetch/templates/config_processed_template.yaml | ||
| include geofetch/templates/looper_sra_convert.yaml | ||
| include geofetch/templates/looper_config_template.yaml | ||
| include geofetch/templates/pipeline_interface_convert.yaml |
This file contains hidden or 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
This file contains hidden or 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,4 +1,4 @@ | ||
| """ Package-level data """ | ||
| """Package-level data""" | ||
|
|
||
| import coloredlogs | ||
| import logmuse | ||
|
|
||
This file contains hidden or 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 +1 @@ | ||
| __version__ = "0.12.7" | ||
| __version__ = "0.12.8" |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
|
|
||
| import os | ||
| import sys | ||
| from argparse import ArgumentParser | ||
| from ubiquerg import VersionInHelpParser | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did we change from using ArgumentParser to a class from ubiquerg? |
||
|
|
||
| import logmuse | ||
| import pypiper | ||
|
|
@@ -15,7 +15,7 @@ def _parse_cmdl(cmdl): | |
| provides convenience functions for converting or deleting sra data in | ||
| various formats. | ||
| """ | ||
| parser = ArgumentParser(description=description) | ||
| parser = VersionInHelpParser(description=description) | ||
| # parser = pypiper.add_pypiper_args(parser, args=["output-parent"]) | ||
| parser.add_argument( | ||
| "-m", | ||
|
|
@@ -72,6 +72,9 @@ def _parse_cmdl(cmdl): | |
| help="Name for sample to run", | ||
| metavar="SAMPLE_NAME", | ||
| ) | ||
| parser.add_argument( | ||
| "-V", "--version", action="version", version=f"%(prog)s {__version__}" | ||
| ) | ||
|
|
||
| parser.add_argument("-r", "--srr", required=True, nargs="+", help="SRR files") | ||
|
|
||
|
|
||
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,4 @@ | ||
| pep_config: {pep_config} | ||
| output_dir: {output_dir} | ||
| pipeline_interfaces: | ||
| - {pipeline_interface_convert} |
This file contains hidden or 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
This file contains hidden or 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,12 @@ | ||
| pipeline_name: sra_convert | ||
| path: sraconvert | ||
| input_schema: ./sra_convert_schema.yaml | ||
| sample_interface: | ||
| command_template: > | ||
| {pipeline.path} --srr {sample.SRR_files} | ||
| {% if sample.SRX is defined %} --sample-name {sample.SRX} {% endif %} | ||
| {% if project.fqfolder is defined %} --fqfolder {project.fqfolder} {% endif %} | ||
| -O {looper.results_subdir} | ||
| compute: | ||
| bulker_crate: databio/sra_convert | ||
| size_dependent_variables: ./resources.tsv |
File renamed without changes.
File renamed without changes.
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -7,3 +7,4 @@ pandas>=1.5.3 | |
| peppy>=0.40.6 | ||
| rich>=12.5.1 | ||
| coloredlogs>=15.0.1 | ||
| piper>=0.14.4 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is minor, but I'd recommend simplifying variable names like this to
keyinstead ofkey_in_list. Given the logic, it is implied, and so, the name is perhaps a bit redundant.