I get an error regarding the javac compiler when trying to install it:
~/jvarkit$ ./gradlew vcf2table
> Task :vcf2table FAILED
FAILURE: Build failed with an exception.
* Where:
Build file '/home/user/jvarkit/build.gradle' line: 681
* What went wrong:
Execution failed for vcf2table com.github.lindenb.jvarkit.tools.vcf2table.VcfToTable.
> Error running javac compiler
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 686ms
1 actionable task: 1 executed
Java seems to be in the right location:
whereis java
java: /usr/bin/java /etc/java /usr/share/java /usr/share/man/man1/java.1.gz
$ echo $PATH
/home/user/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
Define "visualizing" :)
As plain text/graphically ..
I mean having a tabular view of your annotations so I can easily go through see what is interesting. The same way we do in Excel, but I don't like Excel for many reasons and looking to know what people use, if any better.
You can try using a programmer's editor provided you are not saving your files in xlsx/xls format in first place. atom(PC/macOS), Notepad++(PC),BBEdit(macOS) are some of the options. Atom integrates with Git.
If you are trying to use git or version control, consider saving your variant table in .tsv, .csv., .txt, or another raw text based format instead of .xlsx format. In theory this will allow better tracking of changes. Though in practice it becomes a moot point because often when the table changes, every line gets shifted such that entire file is considered 'changed' by git
Thanks Steve. That would help, but I am looking for better tools than excel itself.
Excel is horrible, it will silently mutate your gene names. A good write-up here
Amazing, thank you all :)