Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Komodo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoon
Komodo
Merge requests
!148
move "inbreeding" snippets from README to real scripts
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
move "inbreeding" snippets from README to real scripts
inbreeding-scripts
into
main
Overview
0
Commits
1
Pipelines
1
Changes
4
Merged
STEVAN Antoine
requested to merge
inbreeding-scripts
into
main
10 months ago
Overview
0
Commits
1
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
88b3e950
1 commit,
10 months ago
4 files
+
125
−
50
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
bins/inbreeding/scripts/plot.nu
0 → 100644
+
11
−
0
Options
use ../src/.nushell/consts.nu CACHE
use ../
const FIGURES_DIR = ($CACHE | path join figures)
mkdir $FIGURES_DIR
for exp in (inbreeding list) {
let img = $FIGURES_DIR | path join $exp | path parse --extension '' | update extension "png" | path join
inbreeding load $exp | inbreeding plot --save $img
}
Loading