The Wayback Machine - https://web.archive.org/web/20200626231441/https://github.com/topics/science
Skip to content
#

science

Here are 1,501 public repositories matching this topic...

julia
CameronBieganek
CameronBieganek commented Feb 21, 2020

Do we expect the following syntax to work?

julia> [Int, Float64, String, Bool] .<: Union{Int, String}
ERROR: syntax: space not allowed after ":" used for quoting

It works if you call <: as a broadcasted function:

julia> (<:).([Int, Float64, String, Bool], Union{Int, String})
4-element BitArray{1}:
 1
 0
 1
 0

Version info:

Julia Versio
1samhay
1samhay commented Feb 11, 2020

The Heaviside function should be built in, but the following code throws the error Name Heaviside not defined. Trying to define Heaviside myself did nothing - based on the Traceback I guess it should be defined within lambdifygenerated.

from sympy import *
from IPython.display import display
mux, s, Px, Py, Pxe, Pye = symbols("mu_X s P_X P_Y P_X^* P_Y^*", positive=True)
vx,
wood-chris
wood-chris commented Apr 17, 2020

Version of Singularity:

$ singularity version
3.5.2

Expected behavior

Given this simple def file:

$ more simple.def 
Bootstrap: library
From: ubuntu:18.04

%post

    mkdir -p /opt/openmpi-4.0.1 && cd $_
    pwd 

The pwd should print /opt/openmpi-4.0.1

Actual behavior

S

ivan-aksamentov
ivan-aksamentov commented Mar 17, 2020

In order to perform refactoring and to add new features with more confidence, we need unit, integration and end-to-end tests for:

  • algorithm parts. Seesrc/algorithms

  • React parts - components and pages. See src/components and src/pages

  • State management: redux reducers and sagas. See src/state

The infrastructure:

  • jest and @testing-libraryare already set up. Un
Ageless93
Ageless93 commented Jan 27, 2020

In Advanced view when Activity on any of the items is set to Suspend, it will suspend that item for eternity until 'based on preferences' or 'always' is chosen.

In Simple view there is a Suspend button at the bottom, which suspends calculations for just one hour.
It does the same thing as the Snooze option in the (Windows) right-click BOINC Manager icon in the system tray.

For consistenc

hgrecco
hgrecco commented Jan 7, 2020

This is just a placeholder issue to obtain feedback about the current state of the docs:

  1. Are the docs clear enough?
  2. Are the examples useful and real?
  3. Is the information there for a newbie?
  4. Is the information there for an advanced user?
  5. Is the organization appropiate?
  6. What can we do to improve it.
bogdang989
bogdang989 commented Jan 14, 2020

Example:
Run this tool (provide any directory as the aa input)

class: CommandLineTool
cwlVersion: v1.0
baseCommand: ["echo"]
inputs:
- type: Directory
  id: aa
  inputBinding:
    valueFrom: "$(self.listing.length)"
outputs:
  o1:
    type: Directory
    outputBinding:
      glob: $(inputs.aa.basename)
requirements:
- class: InlineJavascriptRequirement
- class: InitialWork
sboltz
sboltz commented Feb 14, 2020

I noticed that the docs for EvaluationStatus indicate that "reported" is an acceptable value, but the code for EvaluationStatus itself will not accept it.

obspy.core.event.Pick(time=time, waveform_id=wid, phase_hint="P", evaluation_status="reported")

returns

`ValueError: Setting attribute "evaluation_status" failed. Value "reported" could not be converted to type "Enum(["preliminary

Improve this page

Add a description, image, and links to the science topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the science topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.