-
Notifications
You must be signed in to change notification settings - Fork 448
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
FastK: adding new tool #5550
Closed
Closed
FastK: adding new tool #5550
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
81b4e81
starting fastk tool wrapper
abueg acbf696
gfsaga
abueg c0ca84c
fdsaf
abueg 73911c5
this can be served
abueg 7b9270f
test?
abueg 40db534
indentation
abueg 1530579
took stuff out and this works very basic
abueg 59ef44c
testdata
abueg a553432
testdata
abueg 371c28f
tar testfiles
abueg 1f2cfc5
tar testfiles3
abueg 74d75a4
tests
abueg 0cceb90
macros
abueg 3628496
Merge branch 'galaxyproject:main' into fastk
abueg 905b1e2
Create .shed.yml
abueg b682572
Update .shed.yml
bgruening ad04760
remove `ls -lah`
abueg e0663ab
gzip test input
abueg 08d8320
added citation
abueg 82dfa9c
gzipped test file
abueg 97887e8
testing if bits for input file ext detection
abueg ba42b65
change two ifs to an elif
abueg e5b0606
move wd outside of outfiles
abueg 30912b3
remove fastk command from the conditional, use variables instead
abueg f6bafef
rest of input elifs
abueg 2977741
change tests to has_archive_member
abueg cada3fa
moving tokens to macros
abueg e25160e
moving citation and requirements to macros
abueg af3c940
remove period in desc
abueg d6f1382
reformatting to have other tools. test 2 & 3 good. discuss do this or…
abueg 6a717f2
fixed `version_suffix` typo in macros.xml
abueg ea44af0
filter
abueg a2eb1a5
test 1 fix
abueg 5dc3e37
help text
abueg 5ede1b7
escaping unescaped characters
abueg 8ea1904
filetype detection and unsorted bam edits
abueg 6cfbf27
additional has_size assertions
abueg 83f1327
typo
abueg 94d876c
updated with size vals from failed tool test output. i got the previo…
abueg 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.
With
<has_archive_member path=".*" n="10"/>
you could also add an assumption on the number of files in the archive, which would be neat.Additionally you could also make assumptions on the content by including more assumptions, like so:
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.
i considered adding # of files, but for the test involving sorted tables, the number of files generated can change because the number of hidden files made is dependent on how many threads is given to the program -- so it's dependent on
$GALAXY_SLOTS
... though i guess for the test i can specify-T1
for one thread so it's consistent?for content assumption, the
hist
andktab
files are binaries, so i didn't think thehas_text
/not_has_text
assumptions would work, but please correct me if wrong!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.
I would suggest to avoid this
Indeed. Then maybe
has_size
is your friend :)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.
added
has_size
assertions!