diff --git a/codemeta.json b/codemeta.json new file mode 100644 index 0000000..21a0f9b --- /dev/null +++ b/codemeta.json @@ -0,0 +1,52 @@ +{ + "@context": "https://doi.org/10.5063/schema/codemeta-2.0", + "@type": "SoftwareSourceCode", + "author": [ + { + "@id": "https://orcid.org/0000-0003-3283-829X", + "@type": "Person", + "affiliation": { + "@type": "Organization", + "legalName": "Advanced Biomedical Computational Science, Frederick National Laboratory for Cancer Research, Frederick, MD 21702, USA" + }, + "familyName": "Sovacool", + "givenName": "Kelly" + }, + { + "@id": "https://orcid.org/0000-0002-8968-6621", + "@type": "Person", + "affiliation": { + "@type": "Organization", + "legalName": "Advanced Biomedical Computational Science, Frederick National Laboratory for Cancer Research, Frederick, MD 21702, USA" + }, + "familyName": "Cauley", + "givenName": "Ned" + }, + { + "@id": "https://orcid.org/0000-0002-8734-9875", + "@type": "Person", + "affiliation": { + "@type": "Organization", + "legalName": "Advanced Biomedical Computational Science, Frederick National Laboratory for Cancer Research, Frederick, MD 21702, USA" + }, + "familyName": "Sevilla", + "givenName": "Samantha" + }, + { + "@id": "https://orcid.org/0000-0001-8978-8495", + "@type": "Person", + "affiliation": { + "@type": "Organization", + "legalName": "Advanced Biomedical Computational Science, Frederick National Laboratory for Cancer Research, Frederick, MD 21702, USA" + }, + "familyName": "Koparde", + "givenName": "Vishal" + } + ], + "codeRepository": "https://github.com/CCBR/HowTos", + "datePublished": "2025-10-24", + "license": "https://spdx.org/licenses/MIT", + "name": "How-To Guides for the CCR Collaborative Bioinformatics Resource", + "url": "https://ccbr.github.io/HowTos/", + "version": "v0.1.0" +} diff --git a/docs/generative-AI/gh-pilot-vs-code/5 b/docs/generative-AI/gh-pilot-vs-code/5 new file mode 100644 index 0000000..b388ab3 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/5 differ diff --git a/docs/generative-AI/gh-pilot-vs-code/demo/extract_promoters.py b/docs/generative-AI/gh-pilot-vs-code/demo/extract_promoters.py index 5c7f86c..aae39a9 100755 --- a/docs/generative-AI/gh-pilot-vs-code/demo/extract_promoters.py +++ b/docs/generative-AI/gh-pilot-vs-code/demo/extract_promoters.py @@ -64,7 +64,7 @@ def main(): parser.add_argument("--out", required=True, help="Path to output BED file") args = parser.parse_args() - # Open GTF file + # Open GTF file # TODO: handle gzipped gtf files with open(args.gtf, "r") as gtf_file: @@ -72,7 +72,7 @@ def main(): # Extract protein-coding genes and write promoter regions for chrom, tss, strand, gene_name, gene_id in extract_genes(gtf_file): # TODO: Only include standard chromosomes - + # Calculate promoter region based on strand if strand == "+": # For positive strand: TSS - 2000 to TSS + 200 diff --git a/docs/generative-AI/gh-pilot-vs-code/img/auto-suggest.png b/docs/generative-AI/gh-pilot-vs-code/img/auto-suggest.png new file mode 100644 index 0000000..31d80b7 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/auto-suggest.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-pytest.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-pytest.png new file mode 100644 index 0000000..5360899 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-pytest.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-start.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-start.png new file mode 100644 index 0000000..00e9431 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-start.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-where.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-where.png new file mode 100644 index 0000000..ae89050 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests-where.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests.png new file mode 100644 index 0000000..73cec3a Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-ask-tests.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-dict-compr.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-dict-compr.png new file mode 100644 index 0000000..1666e50 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-dict-compr.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-yield.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-yield.png new file mode 100644 index 0000000..6d47f62 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-explain-yield.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-inline-suggestion.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-inline-suggestion.png new file mode 100644 index 0000000..09b2097 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-inline-suggestion.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-inline.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-inline.png new file mode 100644 index 0000000..4d555cf Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-inline.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-question-yield.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-question-yield.png new file mode 100644 index 0000000..76ea000 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-question-yield.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func-answer.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func-answer.png new file mode 100644 index 0000000..01c4e1c Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func-answer.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func.png b/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func.png new file mode 100644 index 0000000..e715c25 Binary files /dev/null and b/docs/generative-AI/gh-pilot-vs-code/img/chat-sidebar-func.png differ diff --git a/docs/generative-AI/gh-pilot-vs-code/index.qmd b/docs/generative-AI/gh-pilot-vs-code/index.qmd index 30998fe..249b343 100644 --- a/docs/generative-AI/gh-pilot-vs-code/index.qmd +++ b/docs/generative-AI/gh-pilot-vs-code/index.qmd @@ -6,12 +6,17 @@ resources: - ./demo/setup.sh --- -CCBR members can view the recording of this demo: +::: {.callout-tip} +## Recording -> [CCBR TechDev meeting 2025-12-19](https://teams.microsoft.com/l/meetingrecap?driveId=b%21TFzec_Fen0CC3VBtt_DOLUi_rPnazLZHq7bJ65bJujOjWrRwPEO3S6dXSGGiG3vN&driveItemId=01P644UUBDFREJK3SODBG32DSCX3NIAZDV&sitePath=https%3A%2F%2Fnih.sharepoint.com%2Fsites%2FNCI-CCRBioinformaticsTechDev%2FShared%2520Documents%2FGeneral%2FRecordings%2FMonthly%2520TechDev%2520Meeting-20251219_120837-Meeting%2520Recording.mp4%3Fweb%3D1&fileUrl=https%3A%2F%2Fnih.sharepoint.com%2Fsites%2FNCI-CCRBioinformaticsTechDev%2FShared%2520Documents%2FGeneral%2FRecordings%2FMonthly%2520TechDev%2520Meeting-20251219_120837-Meeting%2520Recording.mp4%3Fweb%3D1&iCalUid=040000008200E00074C5B7101A82E00807E90C1356C2FC35937FD901000000000000000010000000ABE3C80E6915624FB5ACBA9D7210EB65&masterICalUid=040000008200e00074c5b7101a82e0080000000056c2fc35937fd901000000000000000010000000abe3c80e6915624fb5acba9d7210eb65&threadId=19%3AEq3jqAR95OHCUISNGsEiwWpVp02kj8U2a91MkiX-dXo1%40thread.tacv2&organizerId=b6b931cf-bac3-44d6-9530-29b83b206532&tenantId=14b77578-9773-42d5-8507-251ca2dc2b06&callId=d5acd3cb-4d4c-49e6-aeb9-ef247240bee2&threadType=space&meetingType=Recurring&channelType=Standard&replyChainId=1683319821974&subType=RecapSharingLink_RecapChiclet) +CCBR members can view the recording of this demo at the link below: + +[CCBR TechDev meeting 2025-12-19](https://teams.microsoft.com/l/meetingrecap?driveId=b%21TFzec_Fen0CC3VBtt_DOLUi_rPnazLZHq7bJ65bJujOjWrRwPEO3S6dXSGGiG3vN&driveItemId=01P644UUBDFREJK3SODBG32DSCX3NIAZDV&sitePath=https%3A%2F%2Fnih.sharepoint.com%2Fsites%2FNCI-CCRBioinformaticsTechDev%2FShared%2520Documents%2FGeneral%2FRecordings%2FMonthly%2520TechDev%2520Meeting-20251219_120837-Meeting%2520Recording.mp4%3Fweb%3D1&fileUrl=https%3A%2F%2Fnih.sharepoint.com%2Fsites%2FNCI-CCRBioinformaticsTechDev%2FShared%2520Documents%2FGeneral%2FRecordings%2FMonthly%2520TechDev%2520Meeting-20251219_120837-Meeting%2520Recording.mp4%3Fweb%3D1&iCalUid=040000008200E00074C5B7101A82E00807E90C1356C2FC35937FD901000000000000000010000000ABE3C80E6915624FB5ACBA9D7210EB65&masterICalUid=040000008200e00074c5b7101a82e0080000000056c2fc35937fd901000000000000000010000000abe3c80e6915624fb5acba9d7210eb65&threadId=19%3AEq3jqAR95OHCUISNGsEiwWpVp02kj8U2a91MkiX-dXo1%40thread.tacv2&organizerId=b6b931cf-bac3-44d6-9530-29b83b206532&tenantId=14b77578-9773-42d5-8507-251ca2dc2b06&callId=d5acd3cb-4d4c-49e6-aeb9-ef247240bee2&threadType=space&meetingType=Recurring&channelType=Standard&replyChainId=1683319821974&subType=RecapSharingLink_RecapChiclet)