Matches in Nanopublications for { ?s <http://purl.org/dc/terms/description> ?o ?g. }
- step description "what" assertion.
- step description "This is a test" assertion.
- step description "This is a test" assertion.
- step description "from fairworkflows import manualstep" assertion.
- step description "Another test." assertion.
- step description "@add_step(workflow) #@FairStep def rotate_image(img:Image) -> Image: """Transforming an image""" out = im.transpose(Image.ROTATE_90) return out " assertion.
- step description "def rotate_image(img:Image) -> Image: """Transforming an image by 180 degrees""" out = im.transpose(Image.ROTATE_180) return out" assertion.
- RAMzGwLotMRSQTHRCS15B6hvuYSyEupGnxZaFU3EmcItA description "Inter-species interaction of Picoides villosus with Ips" assertion.
- plan description "@is_fairworkflow(label='My Workflow') def my_workflow(in1, in2, in3): """ A simple addition, subtraction, multiplication workflow """ t1 = add(in1, in2) t2 = sub(in1, in2) t3 = mul(weird(t1, in3), t2) return t3 " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- plan description "@is_fairworkflow(label='My Workflow') def my_workflow(in1, in2, in3): """ A simple addition, subtraction, multiplication workflow """ t1 = add(in1, in2) t2 = sub(in1, in2) t3 = mul(weird(t1, in3), t2) return t3 " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- plan description "@is_fairworkflow(label='My Workflow') def my_workflow(in1, in2, in3): """ A simple addition, subtraction, multiplication workflow """ t1 = add(in1, in2) t2 = sub(in1, in2) t3 = mul(weird(t1, in3), t2) return t3 " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- plan description "@is_fairworkflow(label='My Workflow') def my_workflow(in1, in2, in3): """ A simple addition, subtraction, multiplication workflow """ t1 = add(in1, in2) t2 = sub(in1, in2) t3 = mul(weird(t1, in3), t2) return t3 " assertion.
- step description "@is_fairstep(label='Resize image') def resize_image(imgStr:str) -> str: """Resize the image 300x300 """ from PIL import Image image = Image.open(io.BytesIO(imgStr)) new_image = image.resize((300, 300)) mgOut = io.BytesIO() new_image.save(imgOut, format="png") return imgOut.getvalue()" assertion.
- step description "@is_fairstep(label='Rotate image') def rotate_image(imgStr:str) -> str: """Rotate image""" from PIL import Image image = Image.open(io.BytesIO(imgStr)) new_image = image.transpose(Image.ROTATE_90) mgOut = io.BytesIO() new_image.save(imgOut, format="png") return imgOut.getvalue()" assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- plan description "@is_fairworkflow(label='My Workflow') def my_workflow(in1, in2, in3): """ A simple addition, subtraction, multiplication workflow """ t1 = add(in1, in2) t2 = sub(in1, in2) t3 = mul(weird(t1, in3), t2) return t3 " assertion.
- step description "@is_fairstep(label='Addition') def add(a:float, b:float) -> float: """Adding up numbers!""" return a + b " assertion.
- step description "@is_fairstep(label='Multiplication') def mul(a: float, b: float) -> float: """Multiplying numbers.""" return a * b " assertion.
- step description "@is_fairstep(label='Subtraction') def sub(a: float, b: float) -> float: """Subtracting numbers.""" return a - b " assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- step description "Adding up numbers!" assertion.
- step description "@is_fairstep(label='Addition', a='http://www.example.org/distance', returns='http://www.example.org/mass') def add(a:float, b:float) -> float: return a + b " assertion.
- plan description "In vitro Culture of Human PBMCs DOI: 10.21769/BioProtoc.322" assertion.
- plan description "In vitro Culture of Human PBMCs DOI: 10.21769/BioProtoc.322" assertion.
- step description "@is_fairstep(label='A strange step with little use') def weird(a: float, b:float) -> float: """A weird function""" return a * 2 + b * 4 " assertion.
- RA12lVwEtmddK9OwDkZQZlgJaOD2-0NXtAtO_jDaG-3VQ description "The formalization looks good and the author has addressed the received review comments." assertion.
- RAXVRaFjWDlX5cZcVRXETaEIAx6QAyLK5JCrzDP-yDp9U description "The formalization looks good and the author addressed and responded to all the review comments received." assertion.
- assertion description "Template for defining a community of practice aiming at implementing the FAIR principles." assertion.
- assertion description "This template allows you to make annotate external resources (e.g., papers, software, published datasets) with their RDF stream type, according to RDF-STaX. The assertion is subjective and it includes information on who made it (you) and how was it derived from the source material. More information about RDF-STaX: https://w3id.org/stax" assertion.
- assertion description "This template allows you to make annotate external resources (e.g., papers, software, published datasets) with their RDF stream type, according to RDF-STaX. The assertion is subjective and it includes information on who made it (you) and how was it derived from the source material. More information about RDF-STaX: https://w3id.org/stax" assertion.
- assertion description "This template allows you to make annotate external resources (e.g., papers, software, published datasets) with their RDF stream type, according to RDF-STaX. The assertion is subjective and it includes information on who made it (you) and how was it derived from the source material. More information about RDF-STaX: https://w3id.org/stax" assertion.
- assertion description "This template allows you to make annotate external resources (e.g., papers, software, published datasets) with their RDF stream type, according to RDF-STaX. The assertion is subjective and it includes information on who made it (you) and how was it derived from the source material. More information about RDF-STaX: https://w3id.org/stax" assertion.
- assertion description "This template allows you to make annotate external resources (e.g., papers, software, published datasets) with their RDF stream type, according to RDF-STaX. The assertion is subjective and it includes information on who made it (you) and how was it derived from the source material. More information about RDF-STaX: https://w3id.org/stax" assertion.
- assertion description "Template for defining a community of practice aiming at implementing the FAIR principles." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." RA-gxmTTfOC0BMlVsBop99PKc2igkvBxpD1kUE4v51KLI.assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." RAAONsghuwqPRxo1lmZSM9NfRNDgMPziypBgX8lwqOSQk.assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." RAoYNXtTJR_-K0Ez6KKgbzbJxuNWHWMIBy_apBquabCq8.assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." RAx0zHvzbjx-6WukgPE31HKJyu29JoWoX2aD0ciKDc7ao.assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_bake_in_oven description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- workflow description "Recipe Workflow for Curried Chicken" assertion.
- step description "Melt the butter in a skillet over medium heat. Add the apple and onion to the melted butter, season with the curry powder, and cook and stir until the apple and onion are tender, 7 to 10 minutes. Stir the mushroom soup and half-and-half into the mixture until completely combined; spoon over the chicken pieces." assertion.
- workflow description "Recipe Workflow for Curried Chicken" assertion.
- step description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- step description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- dataset description "Bio2RDF is an open-source project that uses Semantic Web technologies to build and provide the largest network of Linked Data for the Life Sciences." assertion.
- step_bake_in_oven.RAIA0LS2FYoU__eNSuQ-wsF5uslzfeVevwuT1wlKSy_ao description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step_preheat_oven.RADR3Nu93m_U2sn0ogVwZLFTzPRaHregGDxwL1KT2ocXE description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- plan description "Recipe Workflow for Curried Chicken" assertion.
- RAmCToCEjUhn15209Au0_1vDDvlUDdF3O8oqlqRittqNg.plan description "Recipe Workflow for Curried Chicken" RAmCToCEjUhn15209Au0_1vDDvlUDdF3O8oqlqRittqNg.assertion.
- step description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step description "Melt the butter in a skillet over medium heat. Add the apple and onion to the melted butter, season with the curry powder, and cook and stir until the apple and onion are tender, 7 to 10 minutes. Stir the mushroom soup and half-and-half into the mixture until completely combined; spoon over the chicken pieces." assertion.
- step description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- workflow description "Recipe Workflow for Curried Chicken" assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- step description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- step description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.
- step description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- workflow description "Recipe Workflow for Curried Chicken" assertion.
- step description "Melt the butter in a skillet over medium heat. Add the apple and onion to the melted butter, season with the curry powder, and cook and stir until the apple and onion are tender, 7 to 10 minutes. Stir the mushroom soup and half-and-half into the mixture until completely combined; spoon over the chicken pieces." assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- step description "Preheat an oven to 350 degrees F (175 degrees C)." assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- step description "Melt the butter in a skillet over medium heat. Add the apple and onion to the melted butter, season with the curry powder, and cook and stir until the apple and onion are tender, 7 to 10 minutes. Stir the mushroom soup and half-and-half into the mixture until completely combined; spoon over the chicken pieces." assertion.
- step description "Arrange the chicken pieces in a single layer in a 9x13-inch baking dish. Season the chicken liberally with salt, pepper, and the paprika; set aside." assertion.
- step description "Bake in the preheated oven until no longer pink at the bone and the juices run clear, about 75 minutes. An instant-read thermometer inserted into the thickest part of the thigh, near the bone should read 180 degrees F (82 degrees C)." assertion.