-
Notifications
You must be signed in to change notification settings - Fork 14
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
[WIP] Feature/add atlas data import #174
Open
a-solovyev12
wants to merge
14
commits into
develop
Choose a base branch
from
feature/add_atlas-data-import
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fb6003f
initial work on data import wrappers
a-solovyev12 891e9e5
add new wrappers and merge the old atlas import wrapper
a-solovyev12 cc22b6e
rename file
a-solovyev12 e4756b0
update wrappers
a-solovyev12 04a9cf5
rename wrapper
a-solovyev12 cb6b4b1
Merge branch 'develop' of https://github.com/ebi-gene-expression-grou…
a-solovyev12 14a4e30
bump wrapper version
a-solovyev12 9db4b8b
Revert "rename wrapper"
a-solovyev12 8e0709b
Merge branch 'feature/add_atlas-data-import' of https://github.com/eb…
a-solovyev12 eac6424
fix erroneous commits
a-solovyev12 1125531
update cli tool version
a-solovyev12 ec3ffc2
add symlinks for output files
a-solovyev12 f6a8d0f
fix conflict w develop
a-solovyev12 125cf46
update atlas-data-import to 0.0.11 (#189)
a-solovyev12 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 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
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.
In these cases I tend to move directly into the output variable (and that spares you the extra from_work_dir), as the working directory will be deleted at the end of the job, but if this is working it means that Galaxy is grabbing it before the cleanup, so it should be fine.
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.
wouldn't it be more natural to do soft links after running the command? at this point the files don't exist yet, it didn't complain because of that?
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.
@pcm32 Symlinks work fine with non-existent files, I've checked it. The reason why I put them before the main script is that we don't know in advance which if-block will be the last one, so we can't correctly place
&&
in advance to combine two commands.