We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Please add more config files to support more annotation tools and variant callers like here.
public static String getTMBdatabase(String annotation) { String dbConfig = ""; switch (annotation) { case 'snpeff': dbConfig = "$projectDir/assets/tmb/snpeff.yml"; break case 'vep': dbConfig = "$projectDir/assets/tmb/vep.yml"; break case 'merge': dbConfig = "$projectDir/assets/tmb/merge.yml"; break } return dbConfig } public static String getTMBvariantcaller(String variantcaller) { String varConfig = ""; switch (variantcaller) { case 'deepvariant': varConfig = "$projectDir/assets/tmb/deepvariant.yml"; break case 'freebayes': varConfig = "$projectDir/assets/tmb/freebayes.yml"; break case 'haplotypecaller': varConfig = "$projectDir/assets/tmb/haplotypecaller.yml"; break case 'mpileup': varConfig = "$projectDir/assets/tmb/mpileup.yml"; break case 'mutect2': varConfig = "$projectDir/assets/tmb/mutect2.yml"; break case 'strelka': varConfig = "$projectDir/assets/tmb/strelka.yml"; break } return varConfig }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Please add more config files to support more annotation tools and variant callers like here.
The text was updated successfully, but these errors were encountered: