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
process AWESOME_PROCESS { | |
input: | |
path fasta | |
val args | |
output: | |
path "*", emit: output | |
script: |
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
{ | |
"window.titleBarStyle": "custom", | |
"ruby.intellisense": "rubyLocate", | |
"ruby.format": "standard", | |
"ruby.codeCompletion": "rcodetools", | |
"terminal.integrated.fontFamily": "Droid Sans Mono for Powerline", | |
"editor.multiCursorModifier": "ctrlCmd", | |
"git.confirmSync": false, | |
"gitlens.advanced.telemetry.enabled": false, | |
"telemetry.enableCrashReporter": false, |
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
# ransack_join_table_twice_issue | |
# Fork from : github.com/jonatack/test-ransacker-arel-present-predicate.rb | |
# Run it in your console with: `ruby ransack_joins_table_twice_issue.rb` | |
# If you change the gem dependencies, run it with: | |
# `rm gemfile* && ruby ransack_join_table_twice_issue.rb` | |
unless File.exist?('Gemfile') | |
File.write('Gemfile', <<-GEMFILE) |