Skip to content

Commit

Permalink
Continued work on gtf/gff3-related things
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Alavattam committed Apr 20, 2023
1 parent b245cc3 commit 02cb14c
Show file tree
Hide file tree
Showing 3 changed files with 310 additions and 89 deletions.
42 changes: 42 additions & 0 deletions results/2023-0215/work_assess_R64-1-1_gff3.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
title: "work_assess_R64-1-1_gff3.Rmd"
output: html_notebookauthor: "KA"
email: "[email protected]"
output:
html_notebook:
toc: yes
toc_float: true
---
<br />

## Get situated
### Code
<details>
<summary><i>Code: Get situated</i></summary>
```{r}
#!/usr/bin/env Rscript
library(GenomicRanges)
library(IRanges)
library(readxl)
library(rtracklayer)
library(tidyverse)
options(scipen = 999)
options(ggrepel.max.overlaps = Inf)
if(stringr::str_detect(getwd(), "kalavattam")) {
p_local <- "/Users/kalavattam/Dropbox/FHCC"
} else {
p_local <- "/Users/kalavatt/projects-etc"
}
p_wd <- "2022_transcriptome-construction/results/2023-0215"
setwd(paste(p_local, p_wd, sep = "/"))
getwd()
rm(p_local, p_wd)
```
</details>
<br />
<br />
85 changes: 82 additions & 3 deletions results/2023-0215/work_env-building.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
1. [Printed](#printed-3)
1. [Add appropriate shortcut to `.zaliases` and `.bash_aliases`](#add-appropriate-shortcut-to-zaliases-and-bash_aliases-1)
1. [Code](#code-7)
1. [Create an environment for running Python with spyder](#create-an-environment-for-running-python-with-spyder)
1. [Create an environment for running `Python` with `spyder`](#create-an-environment-for-running-python-with-spyder)
1. [Code](#code-8)
1. [Printed](#printed-4)

Expand Down Expand Up @@ -3603,7 +3603,7 @@ alias gff3_env="source activate gff3_env"
<br />

<a id="create-an-environment-for-running-python-with-spyder"></a>
## Create an environment for running Python with spyder
## Create an environment for running `Python` with `spyder`
<a id="code-8"></a>
### Code
<details>
Expand All @@ -3617,7 +3617,8 @@ create_x86_conda_environment spyder_env

mamba install -c conda-forge spyder numpy
mamba install -c conda-forge pandas
mamba install -c conda-forge nltk
mamba install -c conda-forge nltk #NOTE Don't need this
mamba install -c conda-forge pipe
```
</details>
<br />
Expand Down Expand Up @@ -4126,6 +4127,84 @@ regex 372.0kB @ 1.9MB/s 0.2s
Downloading and Extracting Packages
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
❯ mamba install -c conda-forge pipe
__ __ __ __
/ \ / \ / \ / \
/ \/ \/ \/ \
███████████████/ /██/ /██/ /██/ /████████████████████████
/ / \ / \ / \ / \ \____
/ / \_/ \_/ \_/ \ o \__,
/ _/ \_____/ `
|/
███╗ ███╗ █████╗ ███╗ ███╗██████╗ █████╗
████╗ ████║██╔══██╗████╗ ████║██╔══██╗██╔══██╗
██╔████╔██║███████║██╔████╔██║██████╔╝███████║
██║╚██╔╝██║██╔══██║██║╚██╔╝██║██╔══██╗██╔══██║
██║ ╚═╝ ██║██║ ██║██║ ╚═╝ ██║██████╔╝██║ ██║
╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝
mamba (1.4.1) supported by @QuantStack
GitHub: https://github.com/mamba-org/mamba
Twitter: https://twitter.com/QuantStack
█████████████████████████████████████████████████████████████
Looking for: ['pipe']
bioconda/osx-64 3.8MB @ 4.1MB/s 1.0s
bioconda/noarch 4.2MB @ 4.0MB/s 1.1s
pkgs/main/osx-64 5.3MB @ 4.5MB/s 1.3s
pkgs/r/noarch No change
pkgs/r/osx-64 No change
pkgs/main/noarch No change
conda-forge/noarch 12.0MB @ 4.5MB/s 2.9s
conda-forge/osx-64 27.9MB @ 4.5MB/s 6.9s
Pinned packages:
- python 3.11.*
Transaction
Prefix: /Users/kalavatt/mambaforge/envs/spyder_env
Updating specs:
- pipe
- ca-certificates
- certifi
- openssl
Package Version Build Channel Size
───────────────────────────────────────────────────────────────
Install:
───────────────────────────────────────────────────────────────
+ pipe 2.0 pyhd8ed1ab_0 conda-forge/noarch 13kB
Summary:
Install: 1 packages
Total download: 13kB
───────────────────────────────────────────────────────────────
Confirm changes: [Y/n] Y
pipe 12.7kB @ 102.7kB/s 0.1s
Downloading and Extracting Packages
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
Expand Down
Loading

0 comments on commit 02cb14c

Please sign in to comment.