RDKit2DotNetStandard 1.0.37

dotnet add package RDKit2DotNetStandard --version 1.0.37                
NuGet\Install-Package RDKit2DotNetStandard -Version 1.0.37                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RDKit2DotNetStandard" Version="1.0.37" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RDKit2DotNetStandard --version 1.0.37                
#r "nuget: RDKit2DotNetStandard, 1.0.37"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RDKit2DotNetStandard as a Cake Addin
#addin nuget:?package=RDKit2DotNetStandard&version=1.0.37

// Install RDKit2DotNetStandard as a Cake Tool
#tool nuget:?package=RDKit2DotNetStandard&version=1.0.37                

RDKit2DotNetStandard

C# wrapper for RDKit - Release Windows x64

Description

RDKit2DotNetStandard is a .NET Standard library that provides a C# wrapper for RDKit, a powerful open-source cheminformatics and machine learning toolkit. This package allows .NET developers to leverage RDKit's capabilities in their applications.

Compatibility

This library is built on .NET Standard 2.0 and is compatible with:

  • .NET Framework 4.8+
  • .NET Core 3.1+
  • .NET 5.0+
  • Any platform that supports .NET Standard 2.0

Installation

Install the package via NuGet Package Manager:

Install-Package RDKit2DotNetStandard

Or via the .NET CLI:

dotnet add package RDKit2DotNetStandard

Usage

After installation, you can start using RDKit functionalities in your C# code. Here's a simple example:

using GraphMolWrap;

// Your RDKit code here
// For example:
var mol = RWMol.MolFromSmiles("c1ccccc1");
var view = getDrawer(mol, width, height);

// if you want to view the image through Web APIs
return Results.File(view.getImage().ToArray(), "image/png");

public static MolDraw2DCairo getDrawer(RWMol mol, int width, int height)
{
    var drawer = new MolDraw2DCairo(width, height);
    drawer.drawOptions().maxFontSize = 10;
    drawer.drawMolecule(mol);
    drawer.finishDrawing();
    return drawer;
}

Build Information

License

This project is licensed under the BSD 3-Clause License.

Support

For issues and questions, please open an issue on the GitHub repository.

Acknowledgements

This wrapper is based on the RDKit project. For more information about RDKit, visit RDKit.org.

Author

Priyanku Biswas

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.37 101 12/25/2024
1.0.36 84 12/25/2024
1.0.35 83 12/25/2024
1.0.34 82 12/25/2024
1.0.33 95 12/22/2024
1.0.32 1,610 6/23/2023
1.0.31 1,236 3/7/2023
1.0.30 1,250 1/3/2023
1.0.29 1,240 1/3/2023
1.0.28 1,301 1/3/2023
1.0.27 1,392 1/3/2023
1.0.26 1,252 1/2/2023
1.0.25 1,293 12/24/2022
1.0.24 1,210 12/24/2022
1.0.23 1,306 12/24/2022
1.0.22 1,248 12/24/2022
1.0.21 1,249 12/24/2022
1.0.20 1,226 12/24/2022
1.0.19 1,235 12/23/2022
1.0.18 1,240 12/23/2022
1.0.17 1,267 12/23/2022
1.0.16 1,253 12/23/2022
1.0.15 1,232 12/23/2022
1.0.14 1,208 12/23/2022
1.0.13 1,231 12/22/2022
1.0.12 1,291 12/22/2022
1.0.11 1,302 12/22/2022
1.0.10 1,296 12/21/2022
1.0.9 1,334 12/21/2022
1.0.5-beta 1,100 12/1/2022

Built using bp-kelley/rdkit-csharp