This file contains hidden or 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
#!/bin/sh | |
# | |
# An example hook script to prepare a packed repository for use over | |
# dumb transports. | |
# | |
# To enable this hook, rename this file to "post-update". | |
# Jekyll update code | |
# always runs in .git dir |
This file contains hidden or 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
devtools::install_github("jefferis/nat") | |
devtools::install_github(c("nat.nblast","nat.templatebrains","nat.flybrains"), username="jefferislab") | |
devtools::install_github("rappdirs") | |
devtools::install_github("jefferis/flycircuit", ref="feature/rappdirs") |
This file contains hidden or 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
devtools::install_github("jefferis/nat") | |
# dependencies = TRUE should install the suggested package git2r as well | |
devtools::install_github("jefferislab/nat.templatebrains", dependencies=TRUE) | |
devtools::install_github(paste0("jefferislab/", c("nat.nblast", "nat.flybrains"))) | |
# download our standard set of registrations | |
nat.flybrains::download_jefferislab_registrations() | |
devtools::install_github("jefferis/flycircuit") | |
devtools::install_github("jefferis/vfbr") |
This file contains hidden or 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
R Under development (unstable) (2014-07-14 r66149) -- "Unsuffered Consequences" | |
Copyright (C) 2014 The R Foundation for Statistical Computing | |
Platform: i386-w64-mingw32/i386 (32-bit) | |
R is free software and comes with ABSOLUTELY NO WARRANTY. | |
You are welcome to redistribute it under certain conditions. | |
Type 'license()' or 'licence()' for distribution details. | |
R is a collaborative project with many contributors. |
This file contains hidden or 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
FruMARCM-M002262_seg001 | |
FruMARCM-M002262_seg002 | |
FruMARCM-M002278_seg001 | |
FruMARCM-M002287_seg001 | |
FruMARCM-M002507_seg001 | |
FruMARCM-M002522_seg001 | |
FruMARCM-M002578_seg001 | |
FruMARCM-M002578_seg002 | |
FruMARCM-M002579_seg001 | |
FruMARCM-M002579_seg002 |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
ff brightest | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000001_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 156 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000002_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 58 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000003_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 23 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000004_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 93 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000005_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 51 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000006_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 63 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000007_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 52 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000007_seg002_03_warp_m0g80c8e1e-1x26r4.nrrd 48 | |
reformatted.JFRC2/JFRC2_FCWB_5HT1bMARCM-F000008_seg001_03_warp_m0g80c8e1e-1x26r4.nrrd 45 |
This file contains hidden or 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
#!/bin/bash | |
# Setup | |
mkdir images | |
mkdir refbrain | |
curl -o images/A.nrrd http://flybrain.mrc-lmb.cam.ac.uk/cmtk/A.nrrd | |
curl -o refbrain/B.nrrd http://flybrain.mrc-lmb.cam.ac.uk/cmtk/B.nrrd | |
AREG="B_A_9dof.list" | |
REG="B_A_warp.list" |
This file contains hidden or 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
#!/usr/bin/env bash | |
# The idea of this script is to do a round trip test on a CMTK affine | |
# registration using the dof2mat/mat2dof tools | |
mkdir -p testinit.list | |
cat <<EOF > testinit.list/registration | |
! TYPEDSTREAM 1.1 | |
registration { |
This file contains hidden or 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
#' Release an R package to our local repository on ourserver | |
#' | |
#' from where it can then be installed (without this package) by | |
#' install.packages(pkg,repos='http://ourserver.com/R',type='source') | |
#' | |
#' Modified from release function in devtools. | |
#' @param pkg package description see \link[devtools]{release} | |
#' @param check if TRUE, run checking, otherwise omit it. This is useful if | |
#' you've just checked your package and you're ready to release it. | |
#' @param user defaults to myuser |
NewerOlder