-
-
Save solivehong/25a59f7d975a998f5a55b031f0a05142 to your computer and use it in GitHub Desktop.
Make a BED file from the raw UCSC file
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
{"lastUpload":"2020-09-21T02:21:30.797Z","extensionVersion":"v3.4.3"} |
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
[ | |
{ | |
"metadata": { | |
"id": "dee8df91-b82e-4d4c-a99a-872360b1d015", | |
"publisherId": "shalldie.background", | |
"publisherDisplayName": "shalldie" | |
}, | |
"name": "background", | |
"publisher": "shalldie", | |
"version": "1.1.26" | |
}, | |
{ | |
"metadata": { | |
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd", | |
"publisherId": "Shan.code-settings-sync", | |
"publisherDisplayName": "Shan" | |
}, | |
"name": "code-settings-sync", | |
"publisher": "Shan", | |
"version": "3.4.3" | |
}, | |
{ | |
"metadata": { | |
"id": "607fd052-be03-4363-b657-2bd62b83d28a", | |
"publisherId": "ms-vscode-remote.remote-ssh", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-ssh", | |
"publisher": "ms-vscode-remote", | |
"version": "0.55.0" | |
}, | |
{ | |
"metadata": { | |
"id": "bfeaf631-bcff-4908-93ed-fda4ef9a0c5c", | |
"publisherId": "ms-vscode-remote.remote-ssh-edit", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-ssh-edit", | |
"publisher": "ms-vscode-remote", | |
"version": "0.55.0" | |
}, | |
{ | |
"metadata": { | |
"id": "e4ee7751-6514-4731-9cdb-7580ffa9e70b", | |
"publisherId": "MS-CEINTL.vscode-language-pack-zh-hans", | |
"publisherDisplayName": "MS-CEINTL" | |
}, | |
"name": "vscode-language-pack-zh-hans", | |
"publisher": "MS-CEINTL", | |
"version": "1.49.2" | |
} | |
] |
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
{ | |
"remoteListeningOn": { | |
"port": 35073 | |
}, | |
"osReleaseId": "ubuntu", | |
"arch": "x86_64", | |
"webUiAccessToken": "", | |
"sshAuthSock": "", | |
"tmpDir": "/run/user/1000", | |
"platform": "linux", | |
"pid": 37734, | |
"ipcHandlePath": "/var/folders/17/1xwb7mpj097_gyjh9s90g5lm0000gn/T/vscode-ssh-askpass-81f1e7fc37d99159771fa01b542142b7696c9826.sock", | |
"socksPort": 62788, | |
"startupTime": 1600648984332 | |
} |
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
{ | |
"julia.enableTelemetry": true, | |
"terminal.integrated.inheritEnv": false, | |
"julia.NumThreads": 4, | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true, | |
"search.followSymlinks": false, | |
"latex-workshop.latex.tools": [ | |
{ | |
"name": "xelatex", | |
"command": "xelatex", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "pdflatex", | |
"command": "pdflatex", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"%DOC%" | |
] | |
}, | |
{ | |
"name": "bibtex", | |
"command": "bibtex", | |
"args": [ | |
"%DOCFILE%" | |
] | |
} | |
], | |
"latex-workshop.latex.recipes": [ | |
{ | |
"name": "XeLaTeX", | |
"tools": [ | |
"xelatex" | |
] | |
}, | |
{ | |
"name": "PDFLaTeX", | |
"tools": [ | |
"pdflatex" | |
] | |
}, | |
{ | |
"name": "latexmk", | |
"tools": [ | |
"latexmk" | |
] | |
}, | |
{ | |
"name": "BibTeX", | |
"tools": [ | |
"bibtex" | |
] | |
}, | |
{ | |
"name": "xelatex -> bibtex -> xelatex*2", | |
"tools": [ | |
"xelatex", | |
"bibtex", | |
"xelatex", | |
"xelatex" | |
] | |
}, | |
{ | |
"name": "pdflatex -> bibtex -> pdflatex*2", | |
"tools": [ | |
"pdflatex", | |
"bibtex", | |
"pdflatex", | |
"pdflatex" | |
] | |
}, | |
], | |
"latex-workshop.view.pdf.viewer": "tab", | |
"editor.tabSize": 10, | |
"editor.fontSize": 24, | |
"terminal.integrated.fontSize": 20, | |
"vs-kubernetes": { | |
"vs-kubernetes.kubectl-path": "/home/soliva/.vs-kubernetes/tools/kubectl/kubectl", | |
"vs-kubernetes.minikube-path": "/home/soliva/.vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
"vs-kubernetes.helm-path": "/home/soliva/.vs-kubernetes/tools/helm/linux-amd64/helm" | |
}, | |
"workbench.colorTheme": "Monokai Dimmed", | |
"qiniu.uploadEnable": false, | |
"julia.executablePath": "/Applications/Julia-1.4.app/Contents/Resources/julia/bin/julia", | |
"julia.enableCrashReporter": true, | |
"julia.execution.resultType": "both", | |
"background.customImages": [ | |
"/Users/soliva/Pictures/cywl_4k.jpg" | |
], | |
"window.titleBarStyle": "custom", | |
"sync.gist": "25a59f7d975a998f5a55b031f0a05142", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment