Commit 1ad6765e authored by Cage, Gregory's avatar Cage, Gregory
Browse files

Update changelog and documentation

parent c349ae6e
Loading
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
## Nova Galaxy 0.9.1
### Nova Galaxy 0.10.2
- Added ability to mark datasets as remote files, and Nova-Galaxy will attempt to ingress them when running tools (thanks to Gregory Cage). [Merge Request 25](https://code.ornl.gov/ndip/public-packages/nova-galaxy/-/merge_requests/25)
- Datasets can now be linked to existing datasets when uploaded as tool parameters using force_upload parameter. This saves users from having to upload a dataset multiple times if not necessary (thanks to Gregory Cage). [Merge Request 25](https://code.ornl.gov/ndip/public-packages/nova-galaxy/-/merge_requests/25)

### Nova Galaxy 0.10.1
- Dependency update (thanks to Sergey Yakubov). [Commit](https://code.ornl.gov/ndip/public-packages/nova-galaxy/-/commit/1f532dbbd5c6603c7e358101c0b3830fb2b36f5a)

### Nova Galaxy 0.10.0
- Added ToolRunner class to facilitate an event driven running of tools (thanks to Sergey Yakubov). [Merge Request 24](https://code.ornl.gov/ndip/public-packages/nova-galaxy/-/merge_requests/24)

### Nova Galaxy 0.9.1
- Added `get_full_status` method to tool in order to get detailed messages mostly for error states (thanks to Gregory Cage). [Merge Request 23](https://code.ornl.gov/ndip/public-packages/nova-galaxy/-/merge_requests/23)

### Nova Galaxy 0.9.0
+12 −0
Original line number Diff line number Diff line
@@ -72,6 +72,18 @@ class Dataset(AbstractData):
    """Singular file that can be uploaded and used in a Galaxy tool.

    If needing to change the path of the Dataset, it is recommended to create a new Dataset instead.

    Parameters
    ----------
        path: str
            The path to the file that this dataset is representing. Can be left blank if manually providing content.
        name: Optional[str]
            The name of this dataset. Defaults to the filename from the path if provided.
        remote_file: bool
            Whether this file is a remote file that upstream has access to. Defaults to False (local file).
        force_upload: bool
            Whether to explicitly upload this dataset every time despite another dataset with the same name existing
            upstream. If False, Nova Galaxy will attempt to link this dataset with an upstream copy. Defaults to True.
    """

    def __init__(